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?

link|improve this question

feedback

3 Answers

up vote 27 down vote accepted

Resig to the rescue:

Array.max = function( array ){
    return Math.max.apply( Math, array );
};
link|improve this answer
6  
By the way, this is the second entry when you google for "javascript maximum array"... – schnaader Sep 4 '09 at 14:20
It's not de facto until Resig blogs it. – Crescent Fresh Sep 4 '09 at 14:22
3  
It’s not a secret that 95% of the general population are too stupid to use Google. – Bombe Sep 4 '09 at 14:22
2  
Ah, but now it has the SO Sticker of Quality affixed to it in an only slightly-crooked fashion! – Shog9 Sep 4 '09 at 14:26
1  
@kangax: on the other hand, if you have a mix of numbers and string representations of numbers, the sort() -based method may not do what you expect. Try: ["7", "50", 300]... – Shog9 Sep 4 '09 at 21:19
show 3 more comments
feedback

You can use the apply function, to call Math.max:

var array = [267, 306, 108];
var largest = Math.max.apply(Math, array); // 306

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:

Math.min.apply(Math, [1,2,3,4]);

The apply function will execute:

Math.min(1,2,3,4);

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.

link|improve this answer
Thanks for the explanation! – goggin13 Jan 25 at 17:14
@goggin13, you're welcome! – CMS Jan 25 at 17:18
feedback

You could sort the array in descending order and get the first item:

[267, 306, 108].sort(function(a,b){return b-a;})[0]
link|improve this answer
1  
I would assume you could also just sort and get the last item...? – Shog9 Sep 4 '09 at 14:24
@Shog9: Yes, but you would need to specify the comparison function on your own: sort(function(a,b){return b-a;}) – Gumbo Sep 4 '09 at 15:05
2  
Ah. I was thinking more like: [...].sort().pop() – Shog9 Sep 4 '09 at 15:33
@Shog9: Nice, didn’t think of that. – Gumbo Sep 4 '09 at 15:56
Ant. Howitzer. – Robert L Sep 5 '09 at 8:12
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.