Run details:
Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko
IE 11
Windows
Desktop
6 years ago
Test name Executions per second
for 56623.3 Ops/sec
foreach 158114.9 Ops/sec
some 150648.5 Ops/sec
Script Preparation code:
AخA
 
var array = new Array(100);
Tests:
  • for

     
    for (var i = 0; i < array.length; i++) {
      array[i];
    }
  • foreach

     
    array.forEach(function(item, index) {
      return item;
    });
  • some

     
    array.some(function(item, index) {
      return item === array[index];
    });