Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

4 Answers

up vote 68 down vote accepted

Resig to the rescue:

Array.max = function( array ){
    return Math.max.apply( Math, array );
};
share|improve this answer
9  
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
4  
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

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.

share|improve this answer
Thanks for the explanation! – goggin13 Jan 25 '12 at 17:14
@goggin13, you're welcome! – CMS Jan 25 '12 at 17:18
Whoa you put on your answers with a lot of effort :D – Darkyen Sep 26 '12 at 18:09

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

[267, 306, 108].sort(function(a,b){return b-a;})[0]
share|improve this answer
2  
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
4  
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 3 more comments

I've done some testing and it turns out that for bigger arrays (~100k), the following code is roughly 30% faster than Math.max.apply():

function mymax(a)
{
    var m = -Infinity, i = 0, n = a.length;

    for (; i != n; ++i) {
        if (a[i] > m) {
            m = a[i];
        }
    }

    return m;
}

Benchmark results

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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