Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36
Chrome 101
Mac OS X 10.15.7
Desktop
2 years ago
Test name Executions per second
floor 2302429.0 Ops/sec
~~ 4769022.0 Ops/sec
>> 0 4773664.0 Ops/sec
| 0 4777580.5 Ops/sec
<< 0 4774638.5 Ops/sec
& 0xFFFFFFFFFFFF 4774584.5 Ops/sec
^ 0x000000000000 4782877.5 Ops/sec
Math.trunc() 2306417.0 Ops/sec
x - (x % 1) 3144978.8 Ops/sec
parseInt() 2414959.8 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)