Tests:
  • test ==

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

     
    var n = 0;
    var test = "test";
    while(true) {
        n++;
      if(test.includes("test")) {
      }
      
        if(n==100000) 
            break;
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    test ==
    test includes

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 4 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:82.0) Gecko/20100101 Firefox/82.0
Firefox 82 on Windows
View result in a separate tab
Test name Executions per second
test == 15233.8 Ops/sec
test includes 433.8 Ops/sec