Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15
Safari 17
Mac OS X 10.15.7
Desktop
one year ago
Test name Executions per second
floor 6439485.5 Ops/sec
~~ 10449605.0 Ops/sec
>> 0 10422133.0 Ops/sec
| 0 10458527.0 Ops/sec
<< 0 10420217.0 Ops/sec
& 0xFFFFFFFFFFFF 10437597.0 Ops/sec
^ 0x000000000000 10448580.0 Ops/sec
Math.trunc() 6473427.0 Ops/sec
x - (x % 1) 5888442.0 Ops/sec
parseInt() 6384031.5 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)