E0342: using equality or inequality operators against an arrow function will always produce the same result
Using equality or inequality operators against an arrow function will always yield the same result (false or true), e.g. In the code below, the equality operator is used by mistake against an arrow function.
To fix this warning, we need to replace the equality operator with the assigment operator.