Skip to content

Instantly share code, notes, and snippets.

@nola
Created November 30, 2013 18:40
Show Gist options
  • Select an option

  • Save nola/7722789 to your computer and use it in GitHub Desktop.

Select an option

Save nola/7722789 to your computer and use it in GitHub Desktop.
short hand if statement.
var age = 19;
if(age >= 18){
var status = "adult";
}else{
var status = "minor";
}
//short hand version
var status = (age >= 18) ? "adult" : "minor";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment