Skip to content

Instantly share code, notes, and snippets.

@1dolinski
Created February 10, 2014 23:54
Show Gist options
  • Save 1dolinski/8926667 to your computer and use it in GitHub Desktop.
Save 1dolinski/8926667 to your computer and use it in GitHub Desktop.
function basic( callback ){
console.log( 'do something here' );
var result = 'i am the result of `do something` to be past to the callback';
// if callback exist execute it
callback && callback( result );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment