Skip to content

Instantly share code, notes, and snippets.

@katepapineni
Last active July 28, 2020 16:12
Show Gist options
  • Save katepapineni/cfe4e8b394ad2436041e08e090a65dff to your computer and use it in GitHub Desktop.
Save katepapineni/cfe4e8b394ad2436041e08e090a65dff to your computer and use it in GitHub Desktop.
const min = 2;
const max = 7;
const getNum = (num) => {
return num < min ? min : num > max ? max : num;
}
// What's the output?
console.log([getNum(9), getNum(1), getNum(4)].join(' + '));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment