Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36
Chrome 114
Mac OS X 10.15.7
Desktop
one year ago
Test name Executions per second
floor 4115539.8 Ops/sec
~~ 7849351.0 Ops/sec
>> 0 7690870.0 Ops/sec
| 0 7619485.5 Ops/sec
<< 0 7875038.5 Ops/sec
& 0xFFFFFFFFFFFF 7728006.5 Ops/sec
^ 0x000000000000 7805138.5 Ops/sec
Math.trunc() 4125867.8 Ops/sec
x - (x % 1) 5291945.5 Ops/sec
parseInt() 4127749.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)