Test name | Executions per second |
---|---|
0.126 | 149.4 Ops/sec |
1 | 149.3 Ops/sec |
4 | 49.6 Ops/sec |
const val = 0.126;
let total = 0;
const repeat = 20000000;
for(let i=0; i < repeat; i++) {
total += val;
}
const val = 1;
let total = 0;
const repeat = 20000000;
for(let i=0; i < repeat; i++) {
total += val;
};
const val = 4;
let total = 0;
const repeat = 20000000;
for(let i=0; i < repeat; i++) {
total += val;
}