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:
|
|||
| show 1 more comment |
|
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
|
|||||||||||||||||||||
|
For a full discussion see: http://aaroncrane.co.uk/2008/11/javascript_max_api/ |
|||||||
|
|
You do it by extending the Array type:
Boosted from here (by John Resig) |
|||
|
|
|
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 |
|||||
|
|
For big arrays (~10⁷ elements), For big arrays, a quick & dirty solution is:
|
||||
|
|
|
For big arrays (~10⁷ elements), Math.min and Math.max procuces a How about:
|
|||
|
|
|
If you are using prototype.js framework, then this code will work ok:
Documented here: Javascript prototype framework for max |
||||
|
|
|
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. |
||||
|
|
|
This may suit your purposes.
|
|||||||||||
|
|
create a simple object
|
||||
|
|
|
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 |
|||||||||||
|
|
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. |
|||||||||||||||
|
|
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:
|
|||||
|
|
One more way to do it: var arrayMax = Function.prototype.apply.bind(Math.max,null); Usage: var max = arrayMax([2,5,1]); |
|||
|
|
|
If you need performance then this is the best way for small arrays:
|
|||
|
|
|
I managed to solve my problem this way:
I hope I have helped. Best regards. |
|||
|
|
arr.sort();– Jonathon Wisnoski May 23 '11 at 20:22