Script Preparation code:
AخA
 
const xd = '323';
Tests:
  • map

     
    const arr = [], length = 10000;
      let i = 0;
      for(; i<length; ++i) {
        arr.push(5);
      }
      
      function test(x) {
        return x*x;
      }
    const newArr = arr.map(test);
  • for

    x
     
    const arr = [], length = 10000;
      let k = 0;
      for(; k<length; ++k) {
        arr.push(5);
      }
      
      function test(x) {
        return x*x;
      }
    let updatedItems = [];
                const len = arr.length;
                let p = 0;
                for(; p < len; ++p) 
                    updatedItems.push(test(p));
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    map
    for

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 5 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36
Chrome 78 on Windows
View result in a separate tab
Test name Executions per second
map 11671.4 Ops/sec
for 8146.0 Ops/sec