Skip to content

Instantly share code, notes, and snippets.

@azakordonets
Created December 28, 2015 20:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save azakordonets/b2bb4254d6c7c363284a to your computer and use it in GitHub Desktop.
Save azakordonets/b2bb4254d6c7c363284a to your computer and use it in GitHub Desktop.
Get Max or Min from Javascript array
function getArrayMaxValue(arr) {
return Math.max.apply(null, arr);
}
function getArrayMinValue(arr) {
return Math.min.apply(null, arr);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment