Knowledge check: Advanced JavaScript Features
What will print out when the following code runs?
const meal = ["soup", "steak", "ice cream"]
let [starter] = meal;
console.log(starter);
soup
ice cream
steak
The for-of loop works for Object data types.
true
false
What will print out ...
eplus.dev1 min read