Question: Please make following JavaScript program and test the function with your first name, middle name, and last name . If you dont have middle name
Please make following JavaScript program and test the function with your first name, middle name, and last name . If you dont have middle name then put Na in the middle name.
function MyFunction() {
for (var x = 0; x < arguments.length; x++)
{
alert(arguments[x]);
}
}
MyFuntion(Nicholas, Samuel);
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
