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);