Destructuring assignment

#Arrays

const [first, last] = ['Nikola', 'Tesla']

#Objects

let {title, author} = {
  title: 'The Silkworm',
  author: 'R. Galbraith'
}

Supports matching arrays and objects. See: Destructuring

Comments