Test name | Executions per second |
---|---|
Table lookup | 11681200.0 Ops/sec |
Math.pow | 6886847.5 Ops/sec |
var POWERS = [
1,2,4,8,16,32,64,128,256,512,1024,2048,4096,8192,16384,32768,
65536,131072,262144,524288,1048576,2097152
];
let p = 15;
let x;
if (p > 20) {
x = Math.pow(2,p);
} else {
x = POWERS[20];
}
let p = 15;
let x;
x = Math.pow(2,p);