Script Preparation code:
x
 
var arr = [];
var max = -Infinity;
for (i = 0; i < 4096; i++) { 
  arr.push(Math.random() * i);
}
Tests:
  • Math.max.apply

     
    max = Math.max.apply(Math, arr);
  • Math.max with spread

     
    max = Math.max(...arr);
  • basic for loop

     
    for (let i = 0; i < arr.length; i++) {
      if (arr[i] > max) {
        max = arr[i];
      }
    }
  • for loop length caching

     
    for (let i = 0, len = arr.length; i < len; i++) {
      if (arr[i] > max) {
        max = arr[i];
      }
    }
  • for loop reverse

     
    for (let i = arr.length - 1; i >= 0; i--) {
      if (arr[i] > max) {
        max = arr[i];
      }
    }
  • for-of loop

     
    for (const value of arr) {
      if (value > max) {
        max = value;
      }
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    Math.max.apply
    Math.max with spread
    basic for loop
    for loop length caching
    for loop reverse
    for-of loop

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 3 months ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0
Firefox 134 on Windows
View result in a separate tab
Test name Executions per second
Math.max.apply 52504.6 Ops/sec
Math.max with spread 52354.1 Ops/sec
basic for loop 144585.6 Ops/sec
for loop length caching 155074.0 Ops/sec
for loop reverse 144456.4 Ops/sec
for-of loop 21305.4 Ops/sec