Skip to content

Instantly share code, notes, and snippets.

@lohxx
Created April 2, 2018 21:54
Show Gist options
  • Save lohxx/1fb1cff512476a2e648a1fb855251d38 to your computer and use it in GitHub Desktop.
Save lohxx/1fb1cff512476a2e648a1fb855251d38 to your computer and use it in GitHub Desktop.
const max = arr => arr.sort((a,b)=>b-a).shift();
const min = arr => arr.sort().shift();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment