Discussion: The Grocery List
Execute the code to understand the output and gain insights into how JavaScript arrays handle elements vs. properties.
We'll cover the following...
Verifying the output
Now, it’s time to execute the code and observe the output.
Press + to interact
const groceryList = [];groceryList[0] = "Bread";groceryList[1] = "Milk";groceryList.user = "John";console.log(groceryList.length);
Understanding the output
In this puzzle, the array initially starts as an empty array, like an empty bucket. Then, we start filling up the array. We put the string Bread
in the first position of ...