Hello,
How to return an array from a Javascript function ?
For eg:
Please correct the above code.
How to return an array from a Javascript function ?
For eg:
Code:
function test()
{
var test1 = document.getElementsByName("textarea");
return test1;
}
Comment