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);
//Output in console section:
//[1, 2, 3, 4, 5]

Example 2: remove last element from array javascript

array.pop();

Example 3: js array pop

var array = ['A', 'B', 'C'];
// removes and returns last element
lastElement = array.pop();

Example 4: javascript pop

var cars = ['mazda', 'honda', 'tesla'];
var telsa=cars.pop(); //cars is now just mazda,honda

Example 5: javascript array pop

let animals = ["dog","cat","tiger"];

animals.pop(); // ["dog","cat"]

animals.push("elephant"); // ["dog","cat","elephant"]

Example 6: js array.pop

let cats = ['Bob', 'Willy', 'Mini'];

cats.pop(); // ['Bob', 'Willy']