Skip to content

Instantly share code, notes, and snippets.

@akabab
Created March 12, 2018 10:55
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 akabab/ec2a235582d74291593c7a4d073043cc to your computer and use it in GitHub Desktop.
Save akabab/ec2a235582d74291593c7a4d073043cc to your computer and use it in GitHub Desktop.
const min = (a, b) => {
if (a < b) {
return a
}
else {
return b
}
}
const min = (a, b) => a < b ? a : b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment