Question:What is the correct output of the following code? var a=["Lenny","Harold","Mary","Jean","Sal"]; alert(a.shift());
var a=["Lenny","Harold","Mary","Jean","Sal"]; alert(a.shift());
A Sal B Jean C Lenny D None
+ AnswerC
+ Report