Working with Object and Array Destructuring.
Tue Apr 22 2025 18:15:31 GMT+0000 (Coordinated Universal Time)
Saved by
@fsd
const colors = ["red", "green", "blue"];
const [first, second] = colors;
console.log(first); // Output: red
console.log(second); // Output: green
const person = { name: "Alice", age: 25 };
const { name, age } = person;
console.log(name); // Output: Alice
console.log(age); // Output: 25
content_copyCOPY
Comments