what is Destructuring Arrays. what is spread operator.
Anonymous
const fruits = ["apple", "banana", "orange"]; const [firstFruit, secondFruit, thirdFruit] = fruits; console.log(firstFruit); console.log(secondFruit); console.log(thirdFruit);
Check out your Company Bowl for anonymous work chats.