You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a variable called isEligible. When I write return !isEligible, it gets parsed as a call to !is with a class called Eligible instead of a variable.
I have a variable called
isEligible
. When I writereturn !isEligible
, it gets parsed as a call to!is
with a class calledEligible
instead of a variable.is parsed as:
Compare with:
which is parsed as:
The text was updated successfully, but these errors were encountered: