Script Preparation code:
AخA
 
var arr = ['1', '2', '3'];
Tests:
  • forEach(item) ...

     
    var x;
    arr.forEach(function(item) {
      x = item * 10;
    });
  • forEach(function(item, index, array) ...

     
    var x;
    arr.forEach(function(item, index, array) {
      // index && item not used
      x = item * 10;
    });
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    forEach(item) ...
    forEach(function(item, index, array) ...

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 6 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36
Chrome 69 on Windows
View result in a separate tab
Test name Executions per second
forEach(item) ... 8035538.5 Ops/sec
forEach(function(item, index, array) ... 7687259.0 Ops/sec