Skip to content

Instantly share code, notes, and snippets.

@gersongoulart
Created April 11, 2012 17:52
Show Gist options
  • Save gersongoulart/2360894 to your computer and use it in GitHub Desktop.
Save gersongoulart/2360894 to your computer and use it in GitHub Desktop.
Display current function name
function DisplayMyName() {
var myName = arguments.callee.toString();
myName = myName.substr('function '.length);
myName = myName.substr(0, myName.indexOf('('));
alert(myName);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment