Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.55 Safari/537.36
Chrome 96
Mac OS X 10.15.7
Desktop
3 years ago
Test name Executions per second
floor 3431425.8 Ops/sec
~~ 6217355.5 Ops/sec
>> 0 6674509.0 Ops/sec
| 0 6649287.0 Ops/sec
<< 0 6653396.0 Ops/sec
& 0xFFFFFFFFFFFF 6645325.5 Ops/sec
^ 0x000000000000 6655498.5 Ops/sec
Math.trunc() 3505647.2 Ops/sec
x - (x % 1) 4517802.5 Ops/sec
parseInt() 3619245.8 Ops/sec
Script Preparation code:
AخA
 
var x = Math.random() * 100000000;
var y;
Tests:
  • floor

     
    y = Math.floor(x);
  • ~~

     
    y = ~~x;
  • >> 0

     
    y = x >> 0;
  • | 0

     
    y = x | 0;
  • << 0

     
    y = x << 0;
  • & 0xFFFFFFFFFFFF

     
    y = x & 0xFFFFFFFFFFFF;
  • ^ 0x000000000000

     
    y = x ^ 0x000000000000;
  • Math.trunc()

     
    y = Math.trunc(x);
  • x - (x % 1)

     
    y = x - (x % 1);
  • parseInt()

     
    y = parseInt(x)