SyntaxFix
Write A Post
Hire A Developer
Questions
~(5.5) // => -6 ~(-6) // => 5 ~~5.5 // => 5 (same as Math.floor(5.5)) ~~(-5.5) // => -5 (NOT the same as Math.floor(-5.5), which would give -6 )
For more info, see: