MCQs > IT & Programming > JavaScript > When formal arguments value changes, what is the output of Arguments object? function myFunc(a, b) { arguments[1] = 20; arguments[2] = 79; console.log(a + ', ' + b); } myFunc(1, 2);

JavaScript MCQs

When formal arguments value changes, what is the output of Arguments object? function myFunc(a, b) { arguments[1] = 20; arguments[2] = 79; console.log(a + ", " + b); } myFunc(1, 2); 

Answer

Correct Answer: 1, 20

Explanation:

Note: This Question is unanswered, help us to find answer for this one

JavaScript Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

JavaScript Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it