Skip to content

Instantly share code, notes, and snippets.

@onionmk2
Created December 13, 2016 13:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save onionmk2/c204f7822f2a36ad10d67bbffe3f53eb to your computer and use it in GitHub Desktop.
Save onionmk2/c204f7822f2a36ad10d67bbffe3f53eb to your computer and use it in GitHub Desktop.
LogNameAndCall = function(f){
console.log(f.name)
f()
}
x = function(){console.log(1)}
logNameAndCall(f);
// console shows
// x
// 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment