Is there a way to inspect the return value of a function, if it is not
assigned to a variable?

E.g.,
function f1(a, b) {return a*b;};
function f2(a, b) {return a-b;};
function f3(a, b) {return f1(a,b)+f2(a, b);};

Suppose I'm in f3 and want the return values of f1 and f2.  Is there a
way to do that?

Thanks.
Ross

--

You received this message because you are subscribed to the Google Groups 
"Firebug" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/firebug?hl=en.


Reply via email to