Skip to content

Instantly share code, notes, and snippets.

@hiun
Created April 8, 2014 16:16
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 hiun/10150167 to your computer and use it in GitHub Desktop.
Save hiun/10150167 to your computer and use it in GitHub Desktop.
var hometown = "where is your hometown?"
if (hometown = "california") {
var sf = "have you been to san francisco?"
if (sf = "yes") {
var apple = "have you been to apple inc?"
if(apple = "yes") {
var ceo = "did you met Timothy Cook?"
if(ceo = "yes") {
alert("congrat");
} else {
alert("sad")
}
}
}
} else {
var f = "what is famouse in your homewotn?"
if (f = "" || f != "") {
alert("by");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment