2021-11-24 19:18:36 +05:30

5 lines
116 B
Groff

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