- 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 Destructuring Assignment
Extracting Values:
- Destructuring assignment allows extracting values from arrays or objects into distinct variables.
Array Destructuring:
- Assigns array elements to variables using array-like syntax.
Object Destructuring:
- Assigns object properties to variables using object-like syntax.
Example: Array Destructuring
const numbers = [1, 2, 3];
const [a, b, c] = numbers;
Example: Object Destructuring
const person = { name: 'John', age: 30 };
const { name, age } = person;
Default Values:
- Destructuring assignment supports default values in case the source value is undefined.
Nested Destructuring:
- Supports extracting values from nested arrays and objects.
Rest Syntax:
- Allows extracting remaining elements into a new array using the rest syntax (...).
Example: Default Values and Rest Syntax
const numbers = [1, 2];
const [a, b, c = 3] = numbers;
Example: Nested Destructuring
const data = { person: { name: 'John', age: 30 } };
const { person: { name, age } } = data;
Key Points
- Destructuring assignment provides a concise syntax for extracting values from arrays and objects.
- It enhances code readability and simplifies variable assignment in complex data structures.
- Widely used in modern JavaScript development for data manipulation and parameter passing.