Script Preparation code:
AخA
 
var arr = [1, 2, 3, 4, 10, 23, 3, 67];
Tests:
  • single loop

    x
     
    let min = Infinity;
    let max = -Infinity;
    for(let i = 0 ; i < arr.length ; i++) {
        if(arr[i] < min)
          min = arr[i];
      
        if(arr[i] > max) 
          max = arr[i];
    }
    console.log(`
        min: ${min}
        max: ${max}
    `);
  • two loops

     
    let min = Infinity;
    let max = -Infinity;
    for(let i = 0 ; i < arr.length ; i++) {
        if(arr[i] < min)
          min = arr[i];
    }
    for(let i = 0 ; i < arr.length ; i++) {
        if(arr[i] > max) 
          max = arr[i];
    }
    console.log(`
        min: ${min}
        max: ${max}
    `);
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    single loop
    two loops

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 2 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36
Chrome 105 on Windows
View result in a separate tab
Test name Executions per second
single loop 70742.3 Ops/sec
two loops 66289.5 Ops/sec