Skip to content

Instantly share code, notes, and snippets.

@onionmk2
Created December 13, 2016 13:53
Show Gist options
  • Select an option

  • Save onionmk2/c204f7822f2a36ad10d67bbffe3f53eb to your computer and use it in GitHub Desktop.

Select an option

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