Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15
Safari 18
Mac OS X 10.15.7
Desktop
one month ago
Test name Executions per second
floor 494981152.0 Ops/sec
~~ 510720224.0 Ops/sec
>> 0 516944416.0 Ops/sec
| 0 515320704.0 Ops/sec
<< 0 500743936.0 Ops/sec
& 0xFFFFFFFFFFFF 510674080.0 Ops/sec
^ 0x000000000000 506757920.0 Ops/sec
Math.trunc() 523277344.0 Ops/sec
x - (x % 1) 512027200.0 Ops/sec
parseInt() 514113312.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)