Question:What is the output of the following in JavaScript?var Lit=["yes","no","maybe"]; document.write(Lit[2]);
var Lit=["yes","no","maybe"]; document.write(Lit[2]);
A no B maybe C NaN D undefined
+ AnswerB
+ Report