Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0
Chrome 134
Mac OS X 10.15.7
Desktop
20 days ago
Test name Executions per second
floor 12656915.0 Ops/sec
~~ 12638088.0 Ops/sec
>> 0 12693435.0 Ops/sec
| 0 12677050.0 Ops/sec
<< 0 12684219.0 Ops/sec
& 0xFFFFFFFFFFFF 12637262.0 Ops/sec
^ 0x000000000000 12635492.0 Ops/sec
Math.trunc() 12765101.0 Ops/sec
x - (x % 1) 12702862.0 Ops/sec
parseInt() 12548688.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)