From 4cca272289d1b68954e05855ced1b79d9f0d3ced Mon Sep 17 00:00:00 2001 From: Karan <50290386+Sonawane-Karan26@users.noreply.github.com> Date: Wed, 24 Nov 2021 19:18:36 +0530 Subject: [PATCH] Exercise 3.1 --- Chapter 3/Exercise 3.1 | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Chapter 3/Exercise 3.1 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);