Skip to content

Instantly share code, notes, and snippets.

@ibolmo
Created February 28, 2009 19:17
Show Gist options
  • Select an option

  • Save ibolmo/72060 to your computer and use it in GitHub Desktop.

Select an option

Save ibolmo/72060 to your computer and use it in GitHub Desktop.
Array.implement({
max: function(){
return Math.max.apply(null, this);
},
min: function(){
return Math.min.apply(null, this);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment