Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36
Chrome 115
Mac OS X 10.15.7
Desktop
one year ago
Test name Executions per second
floor 7495992.5 Ops/sec
~~ 14123057.0 Ops/sec
>> 0 14028925.0 Ops/sec
| 0 14024649.0 Ops/sec
<< 0 13893025.0 Ops/sec
& 0xFFFFFFFFFFFF 13917840.0 Ops/sec
^ 0x000000000000 13975272.0 Ops/sec
Math.trunc() 7394232.5 Ops/sec
x - (x % 1) 6051346.5 Ops/sec
parseInt() 7541397.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)