Skip to content

Instantly share code, notes, and snippets.

@Eunoia
Created February 16, 2016 17:00
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 Eunoia/bb1f5ec4f8585555ca8d to your computer and use it in GitHub Desktop.
Save Eunoia/bb1f5ec4f8585555ca8d to your computer and use it in GitHub Desktop.
Two ways to do the same thing.
// shorter
color = details.leftToPurchase < 0 ? 'red' : '#534F4E';
// more clear
if(details.leftToPurchase < 0){
color = 'red';
} else {
color = '#534F4E';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment