Greetings!
I'll plead ignorance...that's easy. :-/ This is from: http://www.w3schools.com/js/js_functions.asp
function product(a,b)
{
return a*b;
}
Without assigning a variable to the function, how does the correct value get returned? Or even interpreted?
[pseudocode]
a*b=c
return c
[/pseudocode]
2nd Q:
Is this "undeclared (unseen) variable" local or global?
Thanks, in advance, for your time!
< Steve >