Skip to content

Instantly share code, notes, and snippets.

@samanthaming
Last active July 9, 2018 17:39
Show Gist options
  • Save samanthaming/c1c0eb3ce0e4edd2aa5647c64f40f0ea to your computer and use it in GitHub Desktop.
Save samanthaming/c1c0eb3ce0e4edd2aa5647c64f40f0ea to your computer and use it in GitHub Desktop.
Code Tidbits: #23 No Else Return
// ❌ You can skip the else block
function hello(name) {
if(name) {
return 'πŸ‘‹'
}
else {
return 'πŸ‘»'
}
}
// βœ… Yay, much easier to read
function hello(name) {
if(name) {
return 'πŸ‘‹'
}
return 'πŸ‘»'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment