vote up 6 vote down star
5
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.

flag

I hope this is just to aid you in debugging. Varying behaviour based on the caller is a bad idea. – OJ Nov 11 '08 at 9:15
Thanks it is for debugging. – codemeit Nov 11 '08 at 9:18

5 Answers

vote up 11 vote down check
function Hello()
{
    alert("caller is " + arguments.callee.caller.toString());
}
link|flag
Interesting, but I could make it work only in IE (6). It doesn't work in FF3, Opera 9, Safari 3... – PhiLho Nov 11 '08 at 9:32
vote up 2 vote down

Its safer to use arguments.callee.caller since arguments.caller is deprecated...

link|flag
vote up 1 vote down

arguments.callee.caller.nom

link|flag
vote up 1 vote down
function Hello() {
    alert(Hello.caller);
}
link|flag
vote up 2 vote down

to recap (and make it clearer) ...

this code:

function Hello() {
    alert("caller is " + arguments.callee.caller.toString());
}

is equivalent to this:

function Hello() {
    alert("caller is " + Hello.caller.toString());
}

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 :(

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.