Skip to content

Instantly share code, notes, and snippets.

@kevinwestern
Created December 6, 2013 20:27
Show Gist options
  • Save kevinwestern/7831572 to your computer and use it in GitHub Desktop.
Save kevinwestern/7831572 to your computer and use it in GitHub Desktop.
function thisIsOk() {
var name = getName();
var age = getAge();
if (age < 21) {
console.log("You're too young!");
} else {
console.log("Come on in!");
}
}
function thisIsBad() {
var name = getName();
var age = getAge();
if (age < 21) {
console.log("You're too young!");
} else {
console.log("Come on in!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment