Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:82.0) Gecko/20100101 Firefox/82.0
Firefox 82
Windows
Desktop
4 years ago
Test name Executions per second
test == 15233.8 Ops/sec
test includes 433.8 Ops/sec
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;
    }