This website requires JavaScript.
Explore
Help
Sign In
tod
/
odin-js-fundamentals-part-5
Watch
1
Star
0
Fork
You've already forked odin-js-fundamentals-part-5
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
master
odin-js-fundamentals-part-5
/
node_modules
/
es-abstract
/
helpers
/
isNegativeZero.js
6 lines
101 B
JavaScript
Raw
Permalink
Blame
History
'use strict'
;
module
.
exports
=
function
isNegativeZero
(
x
)
{
return
x
===
0
&&
1
/
x
===
1
/
-
0
;
}
;
Reference in New Issue
View Git Blame
Copy Permalink