MCQs>IT & Programming>JavaScript MCQs>What is the value of the array myArr after execution of the following code: var myArr = [1,2,3,4,5]; myArr.shift();
JavaScript MCQs
What is the value of the array myArr after execution of the following code: var myArr = [1,2,3,4,5]; myArr.shift();
Answer
Correct Answer: [2,3,4,5]
Explanation:
Note: This Question is unanswered, help us to find answer for this one