DEV Community

Discussion on: 3 Powerful Examples of Destructuring Assignment

Collapse
 
arlopezg profile image
Alejandro López • Edited

You can also set an alias to what you're destructuring!

const person = {
  name: 'John',
  lastName: 'Smith'
}

const { lastName: alias } = person

console.log(alias) // 'Smith'
Collapse
 
laurieontech profile image
Laurie

Definitely! It's in that last example as well :)