Question:What will be the output for the following JavaScript bitwise operation?var alpha=5<<1; document.write(alpha);
var alpha=5<<1; document.write(alpha);
A 10 B 6 C 2 D 4
+ AnswerA
+ Report