Menu
×
×
Correct!
Exercise:Alert the number of items in an array, using the correct Array property.
const cars = ["Volvo", "Jeep", "Mercedes"];
alert(cars.length);
Not CorrectClick here to try again. Correct!Next ❯const cars = ["Volvo", "Jeep", "Mercedes"]; alert(); |