Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.3 Safari/605.1.15
Safari 16
Mac OS X 10.15.7
Desktop
2 years ago
Test name Executions per second
floor 7713876.0 Ops/sec
~~ 12556720.0 Ops/sec
>> 0 12599819.0 Ops/sec
| 0 12582029.0 Ops/sec
<< 0 12583262.0 Ops/sec
& 0xFFFFFFFFFFFF 12557819.0 Ops/sec
^ 0x000000000000 12611493.0 Ops/sec
Math.trunc() 7746411.5 Ops/sec
x - (x % 1) 7119347.0 Ops/sec
parseInt() 6216471.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)