Skip to content

Instantly share code, notes, and snippets.

@itsjohncs
Created October 27, 2012 05:34
Show Gist options
  • Save itsjohncs/3963075 to your computer and use it in GitHub Desktop.
Save itsjohncs/3963075 to your computer and use it in GitHub Desktop.
Sneaky computers.
if (result <= 10) {
handling();
} else if (result > 10) {
otherHandling();
} else {
handling(); // to be sure
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment