|
|
|
|
|
by Stormcaller
3936 days ago
|
|
Its because they don't do the same thing Math.floor() favors the number equal to/less than the parameter, Math.floor(-15.5) is -16 while (-15.5 | 0) is -15 Also because the returned value is int32[0], Math.floor(2147483648.5) is 2147483648 while (2147483648.5 | 0) is -2147483648 You are fine if you know the input is less than (2^31) + 1 and you want to truncate, rather than floor. [0]: http://www.ecma-international.org/ecma-262/6.0/#sec-binary-b... |
|
[0] http://www.javascripture.com/Math#trunc