2021-11-25 20:26:58 +05:30

5 lines
116 B
Groff

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