Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36
Chrome 133
Mac OS X 10.15.7
Desktop
one month ago
Test name Executions per second
mod 67396080.0 Ops/sec
& 66213712.0 Ops/sec
HTML Preparation code:
AخA
 
1
<!--your preparation HTML code goes here-->
Script Preparation code:
 
const MAX = 0x7fff
let i = 0;
Tests:
  • mod

     
    while (i < MAX) {
       i = (i % MAX) + 1;
    }
  • &

     
    while (i < MAX) {
       i = (i & MAX) + 1;
    }