If there is a function like
function funname(name)
{
statements;
}
is it possible to call the function without actually passing the function anything?
like
x = funname();
Also, aside from msdn.microsoft.com can anyone recommend a good website/tutorial on objects in JScript?
function funname(name)
{
statements;
}
is it possible to call the function without actually passing the function anything?
like
x = funname();
Also, aside from msdn.microsoft.com can anyone recommend a good website/tutorial on objects in JScript?