how to remove last element of array in javascript code example
Example 1: javascript remove last element from array
array.pop();
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.pop();
Example 2: how to remove last element in js
var array = [1, 2, 3, 4, 5, 6];
array.pop();
console.log(array);
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();