Tests:
  • Test 1

    x
     
    for (var i = 0; i < 1000; i++) {
      var a = "aaa;bbb;ccc";
      a.split(";").forEach(function() {
        //...
      });
    }
  • Test 2

     
    for (var i = 0; i < 1000; i++) {
      var a = "aaa;bbb;ccc";
      var b = a.split(";");
      b.forEach(function() {
        //...
      });
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Test 1
    Test 2

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 8 years ago)
Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36
Chrome 52 on Windows
View result in a separate tab
Test name Executions per second
Test 1 3196.5 Ops/sec
Test 2 3206.1 Ops/sec