Skip to content

Instantly share code, notes, and snippets.

@koshuang
Created July 17, 2013 04:09
Show Gist options
  • Save koshuang/6017633 to your computer and use it in GitHub Desktop.
Save koshuang/6017633 to your computer and use it in GitHub Desktop.
邏輯判斷範例
var isMale = false;
var age = 16;
if (isMale && age <= 14) {
console.log("Hi Boy!");
}
else if (isMale && age > 14) {
console.log("Hi Man!");
}
else if (!isMale && age <= 14) {
console.log("Hi Girl!");
}
else if (!isMale && age > 14) {
console.log("Hi Lady!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment