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
020number_float_rounding_error.js
020number_float_rounding_error.js
/** * Binary floating point */ var x, y, z, num; x = 0.3 - 0.2; y = 0.2 - 0.1; z = 0.5 - 0.4; console.log(x); //0.09999999999999998 console.log(y); //0.1 console.log(z); //0.09999999999999998 // correction with parseFloat and toPrecision console.log(parseFloat(z.toPrecision(12))); //0.1
Reload page
Preview
W3C validation
Edit Code
JS Console