Skip to content

Instantly share code, notes, and snippets.

@plechazunga
Created September 7, 2012 17:35
Show Gist options
  • Save plechazunga/3668032 to your computer and use it in GitHub Desktop.
Save plechazunga/3668032 to your computer and use it in GitHub Desktop.
Max/Min in Array
Array.max = function( array ){
return Math.max.apply( Math, array );
};
Array.min = function( array ){
return Math.min.apply( Math, array );
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment