What are lists called in JavaScript?
Arrays
What do arrays in JavaScript store?
Multiple values in a single variable
What types of data can JavaScript arrays hold?
Any data type, including numbers, strings, objects, and even other arrays
How can you create an array in JavaScript?
Using square brackets [] or the Array constructor
Fill in the blank: You can create an array using _______ or the Array constructor.
[square brackets]
Provide an example of creating an array using square brackets.
let fruits = [“apple”, “banana”, “cherry”]
Provide an example of creating an array using the Array constructor.
let numbers = new Array(1, 2, 3, 4, 5)