Exercise:Create an array named cars, assign the values "Saab", "Volvo" and "BMW" to it, and display it. Syntax hint: var arrayname = [item1, item2, ...]; |
Edit This Code:
Result:
|
Correct Code:
Correct Result:
|