DEV Community

Discussion on: What is the oddest JavaScript behavior?

Collapse
 
kspeakman profile image
Kasey Speakman • Edited
console.log(.3);
// 0.3

console.log(.1 + .2);
// 0.30000000000000004
Collapse
 
adam_cyclones profile image
Adam Crockett 🌀

That's the one! Thanks!