how to remove last element of array in javascript code example

Example 1: javascript remove last element from array

array.pop();   //returns popped element
//example
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.pop();  // fruits= ["Banana", "Orange", "Apple"];

Example 2: 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 3: remove last element from array javascript

array.splice(-1,1)

Example 4: js array delete last

array.pop()

Example 5: remove last element from array javascript

array.splice(-1,1)

Example 6: how to remove last element of array in javascript

let numbers = [1, 2, 3];
numbers.pop();