Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36
Chrome 107
Mac OS X 10.13.6
Desktop
2 years ago
Test name Executions per second
floor 2137669.5 Ops/sec
~~ 3941228.2 Ops/sec
>> 0 3475389.8 Ops/sec
| 0 3831412.2 Ops/sec
<< 0 3867447.0 Ops/sec
& 0xFFFFFFFFFFFF 3982393.8 Ops/sec
^ 0x000000000000 3947394.2 Ops/sec
Math.trunc() 2110258.8 Ops/sec
x - (x % 1) 2514796.0 Ops/sec
parseInt() 2137335.0 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)