DEV Community

5 Helpful Language Features Proposed for JavaScript (2018 edition)

Jake Dohm on December 01, 2018

Proposals The features that I mention in this article have been proposed to TC39, the committee that moves JavaScript forward, but are n...
Collapse
 
fxedel profile image
Felix Edelmann

I really like the optional chaining operator and the null coalescing operator in Kotlin and I'd love to see them in JS. The latter is called "Elvis operator" (?:) in Kotlin, btw.

Collapse
 
jakedohm_34 profile image
Jake Dohm

Yeah, both of those are really cool and helpful features. Thanks for sharing about the "Elvis operator" I didn't know that!