Skip to content

Instantly share code, notes, and snippets.

@lukehedger
Created December 10, 2013 10:32
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 lukehedger/7888636 to your computer and use it in GitHub Desktop.
Save lukehedger/7888636 to your computer and use it in GitHub Desktop.
MinMax helper class in CoffeeScript
class MinMax
@min: (array) -> Math.min.apply Math, array
@max: (array) -> Math.max.apply Math, array
# Use...
min = MinMax.min [0,1,2]
max = MinMax.max [5,4,3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment