ReferenceError: invalid assignment left-hand side
The JavaScript exception "invalid assignment left-hand side" occurs when there was an
unexpected assignment somewhere. For example, a single "=
" sign was used
instead of "==
" or "===
".
Message
ReferenceError: invalid assignment left-hand side
Error type
What went wrong?
There was an unexpected assignment somewhere. This might be due to a mismatch of an
assignment operator
and an equality operator, for example.
While a single "=
" sign assigns a value to a variable, the "==
" or "===
" operators compare a value.
Examples
Typical invalid assignments
if (Math.PI = 3 || Math.PI = 4) {
console.log('no way!');
}
// ReferenceError: invalid assignment left-hand side
var str = 'Hello, '
+= 'is it me '
+= 'you\'re looking for?';
// ReferenceError: invalid assignment left-hand side
In the if
statement, you want to use an equality operator ("=="), and for
the string concatenation, the plus ("+") operator is needed.
if (Math.PI == 3 || Math.PI == 4) {
console.log('no way!');
}
var str = 'Hello, '
+ 'from the '
+ 'other side!';