Test name | Executions per second |
---|---|
test equality | 6407.1 Ops/sec |
test strict equality | 6430.8 Ops/sec |
string to int | 831.0 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;
}