This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
Exercise 1 | |
Rewrite the code below to use array destructuring instead of assigning each value to a variable. | |
*/ | |
{ | |
console.log("EXERCISE 1"); | |
let item = ["Egg", 0.25, 12]; |