language spec proposals to keep and eye on
aka null propagation operator
// instead of this:
data && data.users
// do this:
data?.users
This proposal introduces a new operator
::
which performsthis
binding and method extraction.
language spec proposals to keep and eye on
aka null propagation operator
// instead of this:
data && data.users
// do this:
data?.users
This proposal introduces a new operator
::
which performsthis
binding and method extraction.