Skip to content

Instantly share code, notes, and snippets.

@thomasjo
Created May 20, 2011 01:15
Show Gist options
  • Save thomasjo/982153 to your computer and use it in GitHub Desktop.
Save thomasjo/982153 to your computer and use it in GitHub Desktop.
if vs. unless
if (!someVar && !someOtherVar) {
}
// If we had unless, we could do this
unless (someVar && someOtherVar) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment