Destructuring
Destructuring is a way of extracting values from objects and arrays in JavaScript. It allows you to write more concise code and avoid repeating yourself. Here's an example:
const person = {
name: 'John Doe',
age: 30,
location: 'New York'
};
const { name, age } = person;
console.log(name, age); // Output: John Doe 30
In the code above, person is an object that contains information about a person. The name and age properties are extracted using destructuring and assigned to variables with the same names. The resulting values are then logged to the console.
No comments:
Post a Comment