I have a simple JavaScript Array object containing a few numbers.
[267, 306, 108]
Is there a function that would find the largest number in this array?
|
I have a simple JavaScript Array object containing a few numbers.
Is there a function that would find the largest number in this array?
| ||||
|
feedback
|
| |||||||||||||||||||
feedback
|
|
You can use the apply function, to call Math.max:
How it works? The apply function is used to call another function, with a given context and arguments, provided as an array. The min and max functions can take an arbitrary number of input arguments: Math.max(val1, val2, ..., valN) So if we call:
The apply function will execute:
Note that the first parameter, the context, is not important for these functions since they are static, they will work regardless of what is passed as the context. | |||||
|
feedback
|
|
You could sort the array in descending order and get the first item:
| |||||||||||||||
feedback
|