remove last 2 elements from array 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.pop();
Example 4: splice last element from array javascript
array.splice(-1,1)
Example 5: javascript delete second last element of array
arr.splice(arr.length - 2, 1);
Example 6: remove second last element from array javascript
var pg_url = array_fragment[array_fragment.length - 2]