From fc29cedd300e28b053d6dfc32e2d02702c7b455d Mon Sep 17 00:00:00 2001 From: Karan <50290386+Sonawane-Karan26@users.noreply.github.com> Date: Wed, 24 Nov 2021 19:21:30 +0530 Subject: [PATCH] Project 1 --- Chapter 3/Project 1 | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Chapter 3/Project 1 diff --git a/Chapter 3/Project 1 b/Chapter 3/Project 1 new file mode 100644 index 0000000..20600fb --- /dev/null +++ b/Chapter 3/Project 1 @@ -0,0 +1,7 @@ +theList.pop(); +theList.shift(); +theList.unshift("FIRST"); +theList[3] = "hello World"; +theList[2] = "MIDDLE"; +theList.push("LAST"); +console.log(theList);