function main()
{
Hello();
}
function Hello()
{
// how do you find out the caller is function 'main'?
}
Is there a way to find out call stack at all?
Thanks.
|
5
|
Is there a way to find out call stack at all? Thanks.
|
||||
|
|
|
|
|||
|
|
|
Its safer to use arguments.callee.caller since arguments.caller is deprecated... |
||
|
|
|
|
arguments.callee.caller.nom |
||
|
|
|
|
|
||
|
|
|
|
to recap (and make it clearer) ... this code:
is equivalent to this:
clearly the first bit is more portable since you can change the name of the function, say from "Hello" to "Ciao", and still get the whole thing to work. In the latter, in case u decide to refactor the name of the invoked function (Hello), you would have to change all its occurencies :( |
||
|
|