Skip to content

Instantly share code, notes, and snippets.

@rodnaph
Created September 13, 2012 09:41
Show Gist options
  • Save rodnaph/3713245 to your computer and use it in GitHub Desktop.
Save rodnaph/3713245 to your computer and use it in GitHub Desktop.
/* BAD */
function foo() {
stuff( 123, function() {
// unpossible to test really
});
}
/* better */
function onLoad( evt, etc ) {
// easier to test
}
function foo() {
stuff( 123, onLoad );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment