var list = [261,237,169,165,20,351,108,491,480,465,453,306,280,244,210,391,60,419,391,164,303,31,370,359,208,313,383,219,256,192,314,198,337,198,416,157,462,183,309,193,192,262,244,421,45,204,287,426,239,214];
let largest = -1;
for (let i = 0; i < list.length; i++) {
if (list[i] > largest) {
largest = list[i];
}
}
let largest = -1;
for (const item of list) {
if (item > largest) {
largest = item;
}
}
const largest = list.reduce((a,b) => Math.max(a, b));
const largest = Math.max(list);
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Number 1: use for iterator | |
Number 2: use for-of iterator | |
Number 3: use reduce | |
Number 3: Math.max with spread |
Test name | Executions per second |
---|---|
Number 1: use for iterator | 397949.8 Ops/sec |
Number 2: use for-of iterator | 10689301.0 Ops/sec |
Number 3: use reduce | 485417.9 Ops/sec |
Number 3: Math.max with spread | 4973738.5 Ops/sec |
Let's break down the provided benchmark and its results.
Benchmark Definition
The benchmark compares four different approaches to find the maximum value in an array of numbers:
for
loop with manual indexing.for...of
loop syntax, which automatically iterates over the array elements.reduce()
method, which applies a callback function to each element in the array and returns the accumulated value.Math.max()
function with the spread operator (...
) to find the maximum value.Options Compared
The benchmark compares the performance of these four approaches:
Math.max()
function with the spread operator)Pros and Cons of Each Approach
reduce()
method, and its performance may vary depending on the browser implementation.Library Used
None of the benchmark definitions use a specific library beyond the built-in JavaScript functions (Math.max()
, Array.prototype.reduce()
, and Array.prototype.forEach()
).
Special JS Feature or Syntax
There is no special JavaScript feature or syntax used in these benchmark definitions. They only utilize standard JavaScript features.
Other Alternatives
For finding the maximum value in an array, other alternatives could include:
Map
data structure to store the values and their indices, then finding the key with the maximum value.PriorityQueue
implementation (if available) to efficiently find the maximum value.However, these alternatives may not be as concise or efficient as the methods used in the benchmark definitions.
Benchmark Results
The benchmark results show that:
Keep in mind that these results may vary depending on the specific browser implementation, version, and hardware configuration used for the benchmarking.