DEV Community

Discussion on: Awesome 5 javascript Shorthands

Collapse
 
jonrandy profile image
Jon Randy 🎖️ • Edited

Beware when using the double NOT - it isn't the same as Math.floor:

Math.floor(2.3) // 2
~~2.3 // 2

Math.floor(-2.3) // 3
~~-2.3 // 2
Enter fullscreen mode Exit fullscreen mode
Collapse
 
iftekhs profile image
iFTekhar

Thanks for pointing. agree.🙂