Skip to content

Instantly share code, notes, and snippets.

@mateuszkocz
Created July 19, 2013 15:47
Show Gist options
  • Save mateuszkocz/6040175 to your computer and use it in GitHub Desktop.
Save mateuszkocz/6040175 to your computer and use it in GitHub Desktop.
// Instead of this..
if(callback) {
callback();
}
// you can use this.
callback && callback();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment