Skip to content

Instantly share code, notes, and snippets.

@gladchinda
Created May 31, 2018 23:10
Show Gist options
  • Select an option

  • Save gladchinda/d20dcdf3b272960379f7ebadd6b10dcb to your computer and use it in GitHub Desktop.

Select an option

Save gladchinda/d20dcdf3b272960379f7ebadd6b10dcb to your computer and use it in GitHub Desktop.
// METHOD 1: Using if/else statements
if (loggedIn) {
showUserProfile();
} else {
showLoginForm();
}
// METHOD 2: Using ternary operation
loggedIn ? showUserProfile() : showLoginForm();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment