- JS Introduction
- JS Introduction
- JS Comments
- JS Variables
- JS Datatypes
- JS Operators
- JS Type Conversions
- JS Control Flow
- JS Comparisons
- JS If else
- JS If else Ladder
- JS Ternary Operator
- JS Switch
- JS For Loop
- JS For In
- JS For Of
- JS While
- JS Do While
- JS Break & Continue
- JS Functions
- JS Function Declaration
- JS Function Parameters
- JS Return Statement
- JS Function Expressions
- JS Anonymous Functions
- JS Objects
- JS Objects
- JS Object Methods
- JS Object Constructors
- JS Object Destructuring
- JS Object Prototypes
- JS Map, Filter & Reduce
- JS ES6
- JS ES6
- JS let and const
- JS Arrow Functions
- JS Template Literals
- Destructuring Assignment
- JS Spread Operator
- JS Default Parameters
- JS Classes
- JS Inheritance
- JS Map
- JS Set
- JS Async
- JS Callbacks
- JS Asynchronous
- JS Promises
- JS Async/Await
- JS HTML DOM/BOM
- JS Document Object
- JS getElementbyId
- getElementsByClassName
- JS getElementsByName
- getElementsByTagName
- JS innerHTML
- JS outerHTML
- JS Window Object
- JS History Object
- JS Navigator Object
- JS Screen Object
JavaScript Object Destructuring
- Object destructuring is a syntax that allows you to extract values from objects and assign them to variables.
- It simplifies the process of accessing and working with object properties.
Syntax:
const { property1, property2, /* ... */ } = sourceObject;
- property1, property2, ...: The names of the properties to be extracted.
- sourceObject: The object from which properties are to be extracted.
Why it is Used:
- Concise Assignment: Provides a concise syntax for assigning values from objects to variables.
- Readability: Enhances code readability, especially when dealing with objects with many properties.
Example:
// Object with Properties
const person = {
firstName: 'John',
lastName: 'Doe',
age: 30,
city: 'New York'
};
// Object Destructuring
const { firstName, lastName, age, city } = person;
// Using Extracted Values
console.log(firstName); // Output: John
console.log(lastName); // Output: Doe
console.log(age); // Output: 30
console.log(city); // Output: New York
Destructuring with Alias: You can use aliasing to assign extracted properties to variables with different names.
// Object Destructuring with Alias
const { firstName: fName, lastName: lName } = person;
console.log(fName); // Output: John
console.log(lName); // Output: Doe
Default Values: You can provide default values in case a property is undefined.
// Object Destructuring with Default Values
const { firstName, lastName, gender = 'Unknown' } = person;
console.log(firstName); // Output: John
console.log(lastName); // Output: Doe
console.log(gender); // Output: Unknown
Nested Object Destructuring: Destructuring can be applied to nested objects as well.
// Object with Nested Properties
const student = {
name: { first: 'Alice', last: 'Smith' },
age: 22,
grades: { math: 90, science: 85, english: 95 }
};
// Nested Object Destructuring
const { name: { first, last }, age, grades: { math, science, english } } = student;
console.log(first, last); // Output: Alice Smith
console.log(age); // Output: 22
console.log(math, science, english); // Output: 90 85 95
Summary
- Object destructuring allows for a concise way to extract values from objects and assign them to variables.
- It simplifies the process of working with object properties, improving code readability.
- Default values can be specified for properties that may be undefined.
- Destructuring can be applied to nested objects for more complex data structures.