Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 479 Bytes

future.md

File metadata and controls

20 lines (13 loc) · 479 Bytes

JS Future

language spec proposals to keep and eye on

aka null propagation operator

// instead of this:
data && data.users
// do this:
data?.users

babel pull

This proposal introduces a new operator :: which performs this binding and method extraction.