diff --git a/Chapter 3/Exercise 3.1 b/Chapter 3/Exercise 3.1 new file mode 100644 index 0000000..4e976b8 --- /dev/null +++ b/Chapter 3/Exercise 3.1 @@ -0,0 +1,4 @@ +const myList = ["Milk", "Bread", "Apples"]; +console.log(myList.length); +myList[1] = "Bananas"; +console.log(myList);