Skip to content

Instantly share code, notes, and snippets.

@aymenbz
Forked from samanthaming/23-no-else-return.js
Created July 9, 2018 17:39
Show Gist options
  • Save aymenbz/7242385632ee86646980a48143d588b8 to your computer and use it in GitHub Desktop.
Save aymenbz/7242385632ee86646980a48143d588b8 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