DEV Community

Discussion on: 4 JavaScript ES2018 Features You Should Know

Collapse
 
_andro_ profile image
Alan

Cheers! Love the examples. Didn't know you could use the rest operator more than once if it is nested on another level. Can you add an example? I'm going to have to go test it.

Collapse
 
alexdevero profile image
Alex Devero

The example is in the artcile:
const { one, {...secondLevel }, ...firstLevel } = { /* some properties */ }