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
The other day I found myself wishing I could do ===(nothing) in the same way as we can currently do ==(5). This isn't straightforward to add since === is a builtin function rather than generic. And I'm not sure if its desirable to make === generic since it's not something you really want people to override (related #32844).
The text was updated successfully, but these errors were encountered:
The other day I found myself wishing I could do
===(nothing)
in the same way as we can currently do==(5)
. This isn't straightforward to add since===
is a builtin function rather than generic. And I'm not sure if its desirable to make===
generic since it's not something you really want people to override (related #32844).The text was updated successfully, but these errors were encountered: