Skip to content

Instantly share code, notes, and snippets.

@sorie
Created August 12, 2021 00:41
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 sorie/9b47bf24a27bc8671f5a70e371b3f54a to your computer and use it in GitHub Desktop.
Save sorie/9b47bf24a27bc8671f5a70e371b3f54a to your computer and use it in GitHub Desktop.
javascript tip : ternary operator
//bad code
function getResult(score) {
let result;
if(score > 5) {
result = 'up';
} else if (score <= 5) {
result = 'down';
}
return result;
}
//good code
function getResult(score) {
return score > 5 ? 'up' : 'down';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment