Project 1

This commit is contained in:
Karan
2021-11-24 19:21:30 +05:30
committed by GitHub
parent a44c58506c
commit fc29cedd30
+7
View File
@@ -0,0 +1,7 @@
theList.pop();
theList.shift();
theList.unshift("FIRST");
theList[3] = "hello World";
theList[2] = "MIDDLE";
theList.push("LAST");
console.log(theList);