Skip to content

Instantly share code, notes, and snippets.

@devfred
Created May 23, 2014 19:29
Show Gist options
  • Save devfred/91cbe09fb50a3caf12ce to your computer and use it in GitHub Desktop.
Save devfred/91cbe09fb50a3caf12ce to your computer and use it in GitHub Desktop.
Javascript: Check if callback exists and is function
if (cb && (typeof cb == "function")) {
cb();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment