|
|
input = "c" and gives me the popup "Error: expression must be a modifiable lvalue". What does this mean? How do I make this correct?
if (input == 'c' || input == 'C') {== stands for comparison (= is an assignment operator)."" delimit c-string, '' - char."" and ''.=. == is (comparison) equal to and at least in JavaScript === is exactly equal to (value and type).