Skip to content

Instantly share code, notes, and snippets.

@dsimard
Created May 19, 2010 14:21
Show Gist options
  • Save dsimard/406349 to your computer and use it in GitHub Desktop.
Save dsimard/406349 to your computer and use it in GitHub Desktop.
anonymous functions
var func = function () {
var subfunc = function() {
(function() {
console.trace();
})()
}
subfunc();
}
func();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment