Toggle navigation
Genres
Frontend (2)
JavaScript (6)
Database (2)
Linux Server (3)
Web Apps (4)
Misc (4)
Search
List
New Tutorials
Last Modified Tutorials
</>
Code examples
code
smiko
javascript
basic
019number_negative_zero.js
019number_negative_zero.js
/** * UNDERFLOW * Negative zero occurs when the number is less then ±5 × 10−324 */ var y = -2e-324; console.log(typeof y); //number console.log(y); //-0 in browser, 0 in NodeJS
Reload page
Preview
W3C validation
Edit Code
JS Console