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

How can I easily obtain the min and max values from a JavaScript Array?

Example code:

var arr = new Array();
arr[0] = 100;
arr[1] = 0;
arr[2] = 50;

// something like (but it doesn't have to be)
arr.min(); // return 0
arr.max(); // return 100
share|improve this question
9  
You could just sort it and then access the first and last elements. arr.sort(); – Jonathon Wisnoski May 23 '11 at 20:22
... or you could loop through it storing and replacing the min/max values. After all, it is impossible to avoid looping on every element, why sorting unnecessarily :\ – ajax333221 Aug 22 '12 at 0:42
2  
why didn't you accept one of the answers?!? – ahmadali shafiee Sep 2 '12 at 15:46
This solution of the user CMS is fast, simple and just working: stackoverflow.com/posts/2853163/revisions – prc322 Oct 18 '12 at 13:24
1  
@JonathonWisnoski are you sure it's a good solution for a large array? – EarlGray Nov 1 '12 at 12:08
show 1 more comment

16 Answers

How about augmenting the built-in Array object to use Math.max/Math.min instead:

Array.prototype.max = function() {
  return Math.max.apply(null, this)
}

Array.prototype.min = function() {
  return Math.min.apply(null, this)
}

Augmenting the built-ins can cause collisions with other libraries (some see), so you may be more comfortable with just apply'ing Math.xxx() to your array directly:

var min = Math.min.apply(null, arr),
    max = Math.max.apply(null, arr);
share|improve this answer
2  
Shouldn't that be "return Math.max.apply( Math, this );" and not return Math.max.apply( null, this ); – HankH Nov 3 '09 at 18:24
1  
@HankH: maybe. Math.max is akin to a "static" method, so there is no useful this instance inside of it (I hope). So assuming that is true, calling it would run it in the global scope (i.e. window), which is equivalent to passing null as the first paramter to apply/call. – Roatin Marth Nov 3 '09 at 18:26
4  
@HankH: passing null or Math or {} or whatever to apply() or call() has no bearing on the outcome. Math.max does not nor should not reference this internally. – Roatin Marth Nov 3 '09 at 18:43
5  
As a C# programmer I require strongly typed questions. – ChaosPandion Nov 3 '09 at 18:49
2  
Just sharing a jQuery mistake I was making with the code above which took me a long time to debug. A jquery array works fine on everything but the iPad. I had to convert the array to a true native array for it to work. Only affected the single device for some reason Math.max.apply(null, $.makeArray(array)); – Forrest Jul 25 '12 at 21:17
show 9 more comments
var max_of_array = Math.max.apply(Math, array);

For a full discussion see: http://aaroncrane.co.uk/2008/11/javascript_max_api/

share|improve this answer
4  
+1 for the simplicity of your solution. – fernacolo Jun 2 '12 at 17:23
Thanks for the link! – Sean the Bean Dec 21 '12 at 15:39

You do it by extending the Array type:

Array.max = function( array ){
    return Math.max.apply( Math, array );
};
Array.min = function( array ){
    return Math.min.apply( Math, array );
};

Boosted from here (by John Resig)

share|improve this answer

Others have already given some solutions in which they augment Array.prototype. All I want in this answer is to clarify whether it should be Math.min.apply( Math, array ) or Math.min.apply( null, array ). So what context should be used, Math or null?

When passing null as a context to apply, then the context will default to the global object (the window object in the case of browsers). Passing the Math object as the context would be the correct solution, but it won't hurt passing null either. Here's an example when null might cause trouble, when decorating the Math.max function:

// decorate Math.max
(function (oldMax) {
    Math.max = function () {
        this.foo(); // call Math.foo, or at least that's what we want

        return oldMax.apply(this, arguments);
    };
})(Math.max);

Math.foo = function () {
    print("foo");
};

Array.prototype.max = function() {
  return Math.max.apply(null, this); // <-- passing null as the context
};

var max = [1, 2, 3].max();

print(max);

The above will throw an exception because this.foo will be evaluated as window.foo, which is undefined. If we replace null with Math, things will work as expected and the string "foo" will be printed to the screen (I tested this using Mozilla Rhino).

You can pretty much assume that nobody has decorated Math.max so, passing null will work without problems.

share|improve this answer
2  
Point taken. However why would someone decorate Foo.staticMethod and reference this? Would that not be a mistake in the design of the decorator? (unless of course they were wanting to reference the global scope, and want to remain independent of the JavaScript engine being used, eg Rhino). – Roatin Marth Nov 3 '09 at 18:57

For big arrays (~10⁷ elements), Math.min and Math.max procuces a RangeError (Maximum call stack size exceeded) in node.js.

For big arrays, a quick & dirty solution is:

Array.prototype.min = function() {
    var r = this[0];
    this.forEach(function(v,i,a){if (v<r) r=v;});
    return r;
};
share|improve this answer

For big arrays (~10⁷ elements), Math.min and Math.max procuces a RangeError: Maximum call stack size exceeded in node.js.

How about:

Array.prototype.min = function () {
  return this.reduce(function (p, v) {
    return ( p < v ? p : v );
  });
}

Array.prototype.max = function () {
  return this.reduce(function (p, v) {
    return ( p > v ? p : v );
  });
}
share|improve this answer

If you are using prototype.js framework, then this code will work ok:

arr.min();
arr.max();

Documented here: Javascript prototype framework for max

share|improve this answer

Iterate through, keeping track as you go.

var min = null;
var max = null;
for (var i = 0, len = arr.length; i < len; ++i)
{
    var elem = arr[i];
    if (min === null || min > elem) min = elem;
    if (max === null || max < elem) max = elem;
}
alert( "min = " + min + ", max = " + max );

This will leave min/max null if there are no elements in the array. Will set min and max in one pass if the array has any elements.

share|improve this answer
Fastest solution provided... – kamylko Mar 29 at 0:25

This may suit your purposes.

Array.prototype.min = function(comparer) {

    if (this.length === 0) return null;
    if (this.length === 1) return this[0];

    comparer = (comparer || Math.min);

    var v = this[0];
    for (var i = 1; i < this.length; i++) {
        v = comparer(this[i], v);    
    }

    return v;
}

Array.prototype.max = function(comparer) {

    if (this.length === 0) return null;
    if (this.length === 1) return this[0];

    comparer = (comparer || Math.max);

    var v = this[0];
    for (var i = 1; i < this.length; i++) {
        v = comparer(this[i], v);    
    }

    return v;
}
share|improve this answer
you should initialize your v with 'this[0]' in case no numbers are smaller than 0 – jasonmw Nov 3 '09 at 18:28
Thanks, nice catch. – ChaosPandion Nov 3 '09 at 18:29
Is comparer supposed to be called in some specific scope? Because as is it references this[index] which is undefined everytime. – Roatin Marth Nov 3 '09 at 18:50
Fixed, I always forget about function level scoping. – ChaosPandion Nov 3 '09 at 18:54
Oh now, now @Ionut G. Stan will critique you for the same "wrong context" argument as he did me, since your default comparer (Math.xxx) will be running in the global scope... – Roatin Marth Nov 3 '09 at 19:00
show 1 more comment

create a simple object

var myArray = new Array();

myArray =[10,12,14,100];

 var getMaxHeight ={
     hight : function( array ){return Math.max.apply( Math, array );   }

getMaxHeight.hight(myArray);`
share|improve this answer

You can use Array.sort but you'll have to write a simple number sorting function since the default is alphabetic.

Look at example 2 here.

Then you can grab arr[0] and arr[arr.length-1] to get min and max.

share|improve this answer
The question is about min/max, not sorting. – Ates Goral Nov 3 '09 at 18:48
@Ates Goral - certainly, but surely you can understand that a sorted list allows O(1) access to the min and max values, yes? – Peter Bailey Nov 3 '09 at 19:09
1  
Performance wise the sort would have a lot more swapping going on. That has to come in to consideration. – ChaosPandion Nov 3 '09 at 19:12
I agree that sorting is a simple approach that works; however, the performance concerns that @ChaosPandion pointed out are real. – Justin Johnson Nov 3 '09 at 21:43

ChaosPandion's solution works if you're using protoype. If not, consider this:

Array.max = function( array ){
    return Math.max.apply( Math, array );
};

Array.min = function( array ){
    return Math.min.apply( Math, array );
};

The above will return NaN if an array value is not an integer so you should build some functionality to avoid that. Otherwise this will work.

share|improve this answer
jeerose, why do you have (Math, this) as agruments when Roatin Marth only has (null, this)? – HankH Nov 3 '09 at 18:26
@HankH: see my response to your comment in a comment to my own answer. – Roatin Marth Nov 3 '09 at 18:28
1  
I don't understand what you mean by "ChaosPandion's solution works if you're using protoype". How is your solution different, except you're using the Math object as the context? – Ionuț G. Stan Nov 3 '09 at 18:28
2  
Please explain how mine only works if you use prototype. – ChaosPandion Nov 3 '09 at 18:28
Sorry, I meant if you extend the prototype yours will work. Apologies. – jeerose Nov 3 '09 at 18:31
show 4 more comments

Is this homework? You need to add a prototype to the array class which defines a function for min and max and then write some code that traverses the array storing the greatest or least value it's found.

For fun, I'm going to do half of this for you with jQuery:

x=Array();
jQuery.extend(x,{
  min:function(){
    var n=Number.MAX_VALUE;
    for(i=0;i<this.length;i++){
      if(this[i]<n){
        n=this[i];
    }}
    return n;},
    max:function(){var n=Number.MIN_VALUE;for(i=0;i<this.length;i++){if(this[i]>n){n=this[i];}}return n;}
});
share|improve this answer
I am not downing your answer, but I must ask why you have all the code scrunched together? – ChaosPandion Nov 3 '09 at 19:08
Before I posted it it was a one-liner. – dlamblin Nov 3 '09 at 19:59

One more way to do it:

var arrayMax = Function.prototype.apply.bind(Math.max,null);

Usage: var max = arrayMax([2,5,1]);

share|improve this answer

If you need performance then this is the best way for small arrays:

var min = 99999;
var max = 0;
for(var i = 0; i < v.length; i++)
{
    if(v[i] < min)
    {
        min = v[i];
    }
    if(v[i] >= max)
    {
        max = v[i];
    }
}
share|improve this answer

I managed to solve my problem this way:

    var strDiv  = "4,8,5,1"
var arrayDivs   = strDiv.split(",")
var str = "";

for (i=0;i<arrayDivs.length;i++)
{
    if (i<arrayDivs.length-1)
    {
      str = str + eval('arrayDivs['+i+']')+',';
    } 
    else if (i==arrayDivs.length-1)
    {
      str = str + eval('arrayDivs['+i+']');
    }
}

str = 'Math.max(' + str + ')';
    var numMax = eval(str);

I hope I have helped.

Best regards.

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.