In the accepted answer on my earlier question
( What is the fastest way to generate a random integer in javascript? ), I was wondering how a number loses its decimals via the symbol |
.
For example:
var x = 5.12042;
x = x|0;
How does that floor the number to 5?
Some more examples:
console.log( 104.249834 | 0 ); //104
console.log( 9.999999 | 0 ); // 9

((Math.pow(2,32)/2)-1)|0; // 2147483647Remove the-1and you'll not get the desired result.((Math.pow(2,32)/2))|0; // -2147483648– squint Jan 28 '12 at 23:57Math.floor(x)function. jsperf.com/floor-or-or – user824294 Jan 30 '12 at 3:01-1.23to see what happens – ajax333221 Jun 5 '12 at 3:53