nodejs array pop code example
Example 1: how to remove last element in js
var array = [1, 2, 3, 4, 5, 6];
array.pop();
console.log(array);
Example 2: remove last element from array javascript
array.pop();
Example 3: js array pop
var array = ['A', 'B', 'C'];
lastElement = array.pop();
Example 4: javascript pop
var cars = ['mazda', 'honda', 'tesla'];
var telsa=cars.pop();
Example 5: javascript array pop
let animals = ["dog","cat","tiger"];
animals.pop();
animals.push("elephant");
Example 6: js array.pop
let cats = ['Bob', 'Willy', 'Mini'];
cats.pop();