Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 Edg/119.0.0.0
Chrome 119
Windows
Desktop
one year ago
Test name Executions per second
for..of 373.7 Ops/sec
forEach 1328593.0 Ops/sec
Script Preparation code:
AخA
 
var array = new Array(1000);
Tests:
  • for..of

     
    for (var i of array) {
      console.log(array[i]);
    }
  • forEach

     
    array.forEach(function(i) {
      console.log(array[i]);
    });