Skip to content

Instantly share code, notes, and snippets.

@justin-the-developer
Created August 3, 2021 17:04
Show Gist options
  • Save justin-the-developer/2ae0d6fd0f4716d86b3ab4a8dc9804e8 to your computer and use it in GitHub Desktop.
Save justin-the-developer/2ae0d6fd0f4716d86b3ab4a8dc9804e8 to your computer and use it in GitHub Desktop.
//Ternary Operator
//Bad Code
function getResult(score) {
let result;
if( score > 9) {
result = 'good!'
} else if (score <= 9) {
result = 'bad'
}
return result;
}
//Good Code
function getResult(score) {
return score > 9 ? 'good' : 'bad';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment