Skip to content

Instantly share code, notes, and snippets.

@lucassmagal
Created June 28, 2013 21:08
Show Gist options
  • Save lucassmagal/5888129 to your computer and use it in GitHub Desktop.
Save lucassmagal/5888129 to your computer and use it in GitHub Desktop.
if(foo == 1 &&
bar == 2 &&
baz == 3) {
// do something
}
// é o mesmo de
if(foo == 1)
if(bar == 2)
if(baz == 3) {
// do something
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment