Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36
Chrome 109
Mac OS X 10.15.7
Desktop
2 years ago
Test name Executions per second
floor 6787297.0 Ops/sec
~~ 13551721.0 Ops/sec
>> 0 13584247.0 Ops/sec
| 0 13569935.0 Ops/sec
<< 0 13553814.0 Ops/sec
& 0xFFFFFFFFFFFF 13618778.0 Ops/sec
^ 0x000000000000 13599608.0 Ops/sec
Math.trunc() 6796419.0 Ops/sec
x - (x % 1) 7344303.0 Ops/sec
parseInt() 6840333.5 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)