3.
What is destructuring in JavaScript?
It is a way to create new objects or arrays from existing ones.
It is the process of breaking down an object or an array into individual variables or elements.
It is a method used to combine multiple objects or arrays into a single one.
It is a feature in JavaScript to access object properties by their key names directly.
Correct: B
Destructuring in JavaScript allows you to extract multiple values from objects or arrays and assign them to variables in a more concise and readable way. It simplifies the process of accessing nested properties or elements.