Run details:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36
Chrome 65
Linux
Other
6 years ago
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
Tests:
  • test equality

    AخA
     
    var n = 0;
    while(true) {
        n++;
        if(n==100000) 
            break;
    }
  • test strict equality

     
    var n = 0;
    while(true) {
        n++;
        if(n===100000) 
            break;
    }
  • string to int

     
    var n = 0;
    while(true) {
        n++;
        if(n=='100000') 
            break;
    }