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
|
How can I easily obtain the min and max values from a JavaScript Array? Example code:
| |||
|
feedback
|
|
How about augmenting the built-in Array object to use
Augmenting the built-ins can cause collisions with other libraries (some see), so you may be more comfortable with just
| |||||||||||||||||
feedback
|
|
You do it by extending the Array type:
Boosted from here (by John Resig) | |||
|
feedback
|
For a full discussion see: http://aaroncrane.co.uk/2008/11/javascript_max_api/ | ||||
|
feedback
|
|
Others have already given some solutions in which they augment When passing
The above will throw an exception because You can pretty much assume that nobody has decorated | ||||
feedback
|
|
This may suit your purposes.
| |||||||||||
feedback
|
|
If you are using prototype.js framework, then written code will work ok:
Documented here: Javascript prototype framework for max | ||||
|
feedback
|
|
You can use Array.sort but you'll have to write a simple number sorting function since the default is alphabetic. Then you can grab | |||||||||||
feedback
|
|
ChaosPandion's solution works if you're using protoype. If not, consider this:
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. | |||||||||||||||
feedback
|
|
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:
| |||||
feedback
|
|
Iterate through, keeping track as you go.
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. | ||||
|
feedback
|
|
For big arrays (~10⁷ elements), For big arrays, a quick & dirty solution is:
| ||||
|
feedback
|
arr.sort();– Jonathon Wisnoski May 23 '11 at 20:22