As I see in examples, the functionality if ~~
and Math.floor
is the same. Both of them round a number downward (Am I think correct?)
Also I should mention that according to this test ~~
is faster than Math.floor
: jsperf.com/math-round-vs
So I want to know, is there any difference between ~~
and Math.floor
?