You have already completed these exercises!
Do you want to take them again?
You completed the JS Arrays Exercises from W3Schools.com
Share on:
What is NOT a legal way to create an array??
const fruits = ['Orange', 'Banana', 'Apple'];
const fruits = new Array ('Orange', 'Banana', 'Apple');
const fruits = ('Orange', 'Banana', 'Apple');