Test name | Executions per second |
---|---|
test equality | 6300.4 Ops/sec |
test strict equality | 6294.4 Ops/sec |
string to int | 881.4 Ops/sec |
var n = 0;
while(true) {
n++;
if(n==100000)
break;
}
var n = 0;
while(true) {
n++;
if(n===100000)
break;
}
var n = 0;
while(true) {
n++;
if(n=='100000')
break;
}