What is object destructuring in JavaScript?
New Courses Coming Soon
Join the waiting lists
What does "object destructuring" mean and what is the result of a destructuring operation?
Say you have an object with some properties:
const person = {
firstName: 'Tom',
lastName: 'Cruise',
actor: true,
age: 57
}
You can extract just some of the object properties and put them into named variables:
const { firstName, age } = person
Now we have 2 new variables, firstName
and age
, that contain the desired values:
console.log(firstName) // 'Tom'
console.log(age) // 54
The value assigned to the variables does not depend on the order we list them, but it’s based on the property names.
You can also automatically assign a property to a variable with another name:
const { firstName: name, age } = person
Now instead of a variable named firstName
, like we had in the previous example, we have a name
variable that holds the person.firstName
value:
console.log(name) // 'Tom'
→ Get my JavaScript Beginner's Handbook
→ Read my
JavaScript Tutorials
on The Valley of Code
→ Read my
TypeScript Tutorial
on The Valley of Code
Here is how can I help you:
- COURSES where I teach everything I know
- CODING BOOTCAMP cohort course - next edition in 2025
- THE VALLEY OF CODE your web development manual
- BOOKS 17 coding ebooks you can download for free on JS Python C PHP and lots more
- Interesting links collection
- Follow me on X