javascript pull out the last element of an array code example
Example 1: javascript get last element of array pull
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.pop();
Example 2: javascript take last element of array
let array = [1,2,3,4,5];
let lastElement = array.pop();
// array -> [1,2,3,4];
// lastElement = 5;