Skip to content

Instantly share code, notes, and snippets.

@dotSlashLu
Last active August 29, 2015 14:03
Show Gist options
  • Save dotSlashLu/67799b9e951f95b56f10 to your computer and use it in GitHub Desktop.
Save dotSlashLu/67799b9e951f95b56f10 to your computer and use it in GitHub Desktop.
// this won't work
var obj = {
test: function() {
subfunc();
var subfunc = function() {};
}
};
// this one works
var obj = {
test: function() {
subfunc();
function subfunc() {};
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment