Files
JavaScript-from-Beginner-to…/Chapter 03/Project_1.js
T
2021-11-30 17:52:30 +05:30

8 lines
159 B
JavaScript
Vendored

theList.pop();
theList.shift();
theList.unshift("FIRST");
theList[3] = "hello World";
theList[2] = "MIDDLE";
theList.push("LAST");
console.log(theList);