Fast Array Foreach (v210)

Revision 210 of this benchmark created by Eugene on


Setup

// Populate the base array
        var arr = [];
        for (var i = 0; i < 10; i++) {
          arr[i] = i;
        }

Test runner

Ready to run.

Testing in
TestOps/sec
Array.ForEach
arr.forEach(function (item){
 item * 3 * 8;
})
ready
For
for (var i = 0, len = arr.length; i < len; i++) {
 arr[i] * 3 * 8;
}
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.