A
Q. Consider the following code snippet :
var a = [];
a.unshift(1);
a.unshift(22);
a.shift();
a.unshift(3,[4,5]);
a.shift();
a.shift();
a.shift();
The final output for the shift() is
- Correct Answer - Option(A)
- Views: 15
- Filed under category JavaScript
- Hashtags:
Discusssion
Login to discuss.