Skip to content

Instantly share code, notes, and snippets.

@azakordonets
Created December 28, 2015 20:49
Show Gist options
  • Select an option

  • Save azakordonets/b2bb4254d6c7c363284a to your computer and use it in GitHub Desktop.

Select an option

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