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 think the issue comes from the fact that undefined properties of objects are still properties of the object:
if(o.myProperty===undefined){alert("myProperty value is the special value `undefined`");}// versus...if(!o.hasOwnProperty('myProperty')){alert("myProperty does not exist");}
Might not want to allow it, but if so should update the type definition to explicitly disallow it or throw a more helpful error
The text was updated successfully, but these errors were encountered: