Script Preparation code:
AخA
 
var strings = Array(1000).fill('hola soy edu feliz navidad');
Tests:
  • For loop

     
    let result = ''
    for(let i = 0; i < strings.length; i++) {
      result += strings[i] + '\n';
    }
  • join

     
    const result = strings.join('\n');
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    For loop
    join

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 21 days ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36 Edg/134.0.0.0
Chrome 134 on Windows
View result in a separate tab
Test name Executions per second
For loop 22398.9 Ops/sec
join 58222.0 Ops/sec