Test name | Executions per second |
---|---|
Modulo | 71377880.0 Ops/sec |
bitwise AND | 65315804.0 Ops/sec |
<!--your preparation HTML code goes here-->
function getRandomArray() {
const arr = [];
for (let i = 0; i < 10000; i++) {
Math.floor(Math.random() * 100000) + 1;
}
return arr;
}
var randomArr = getRandomArray()
const x = randomArr.map(x => x % 2 === 1)
const y = randomArr.map(x => x & 1 === 1)