8 lines
159 B
Plaintext
8 lines
159 B
Plaintext
theList.pop();
|
|
theList.shift();
|
|
theList.unshift("FIRST");
|
|
theList[3] = "hello World";
|
|
theList[2] = "MIDDLE";
|
|
theList.push("LAST");
|
|
console.log(theList);
|