(Choose
1
answer)
What is wrong with this code?
var name = "Mike";
"Colleen" = name;
A. It is illegal to change the value stored in a variable.
B. This code is illegal and it doesn't make sense to have a non-variable (also called a constant) in the left-hand side (LHS) of an assignment statement.
C. The variable declaration is illegal.
Q: 25