let's say I have a function:
function test1() {
}
I want to return "test1" from within itself. I found out that you can do arguments.callee
which is going to return the whole function and then do some ugly regex. Any better way?
what about namespaced functions?
is it possible to get their name as well:
e.g.:
var test2 =
{
foo: function() {
}
};
I want to return foo for this example from within itself.
update: for arguments.callee.name Chrome returns blank, IE9 returns undefined. and it does not work with scoped functions.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…