Exercise 3.1

This commit is contained in:
Karan
2021-11-24 19:18:36 +05:30
committed by GitHub
parent 0aa61dee58
commit 4cca272289
+4
View File
@@ -0,0 +1,4 @@
const myList = ["Milk", "Bread", "Apples"];
console.log(myList.length);
myList[1] = "Bananas";
console.log(myList);