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
car? compiles to typeof car !== "undefined" && car !== null;
but
@car? compiles to this.car != null;
Should it not compile to typeof this.car !== "undefined" && this.car !== null;? It is entirely possible that somebody could reference an undefined property of @ or this
The text was updated successfully, but these errors were encountered:
I expected
@car?
to behave the same ascar?
car?
compiles totypeof car !== "undefined" && car !== null;
but
@car?
compiles tothis.car != null;
Should it not compile to
typeof this.car !== "undefined" && this.car !== null;
? It is entirely possible that somebody could reference an undefined property of@
orthis
The text was updated successfully, but these errors were encountered: