linusSanto
Programmer
If the formal and actual argument of function
(i mean arguments in function defination and function declaration )
should match in numbers and the data type then how in the javascript if i call any function i can use
function xyz()
{
var argv = xyz.arguments;
..........
}
How in this case it does not look for the arguments it passes from the function call?
(i mean arguments in function defination and function declaration )
should match in numbers and the data type then how in the javascript if i call any function i can use
function xyz()
{
var argv = xyz.arguments;
..........
}
How in this case it does not look for the arguments it passes from the function call?