var list = ["bar", "baz", "foo", "qux"];
list.shift()//["baz", "foo", "qux"]const plants = ['broccoli', 'cauliflower', 'cabbage', 'kale', 'tomato'];
console.log(plants.pop());
// expected output: "tomato"
console.log(plants);
// expected output: Array ["broccoli", "cauliflower", "cabbage", "kale"]var cars = ['mazda', 'honda', 'tesla'];
var telsa=cars.pop(); //cars is now just mazda,honda var array= ['A', 'B', 'C'];
// removes andreturnslast element
lastElement = array.pop();let animals = ["dog","cat","tiger"];
animals.pop(); // ["dog","cat"]
animals.push("elephant"); // ["dog","cat","elephant"] let array= ["A", "B", "C"];
//Removes the last element of the array
array.pop();
//===========================
console.log(array);
//output =>//["A", "B"]
//if you want to remove more varibles in the array,
//insted ofusing push you can simply define the length of the array
let array1 = [1, 2, 3, 4, 5, 6];
//Defines the length of the arrayto2, removing the elements
//after the second element
array1.length =2;
//===========================
console.log(array1);
//output =>//["1", "2"]