E0374: unexpected whitespace between '!' and '=='
x! == y
is a typo for a strict inequality, as in x !== y
:
To fix the warning, replace ! ==
with !==
:
See also: E0373
Find bugs in JavaScript programs.
x! == y
is a typo for a strict inequality, as in x !== y
:
To fix the warning, replace ! ==
with !==
:
See also: E0373