Pop
let arr = ["one", "two", "three", "four", "five"];
arr.pop();
console.log(arr);
// Result: ['one', 'two', 'three', 'four']Last updated
let arr = ["one", "two", "three", "four", "five"];
arr.pop();
console.log(arr);
// Result: ['one', 'two', 'three', 'four']Last updated