Created
January 26, 2012 04:00
-
-
Save jgaskins/1680899 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// I've never seen it written this way | |
myFunction(function() { | |
doSomethingJavascripty() }) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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