Files
JavaScript-from-Beginner-to…/Chapter 03/Exercise 3.1
T
2021-11-25 20:26:58 +05:30

5 lines
116 B
Groff
Vendored

const myList = ["Milk", "Bread", "Apples"];
console.log(myList.length);
myList[1] = "Bananas";
console.log(myList);