Skip to content

Instantly share code, notes, and snippets.

@jgaskins
Created January 26, 2012 04:00
Show Gist options
  • Save jgaskins/1680899 to your computer and use it in GitHub Desktop.
Save jgaskins/1680899 to your computer and use it in GitHub Desktop.
// I've never seen it written this way
myFunction(function() {
doSomethingJavascripty() })
// This is how most JS I've seen is laid out
myFunction(function() {
doSomethingJavascripty();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment