remove last two items from array 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: splice last element from array javascript

array.splice(-1,1)

Example 3: javascript delete second last element of array

arr.splice(arr.length - 2, 1);

Example 4: remove last element from array javascript

array.splice(-1,1)

Example 5: remove second last element from array javascript

var pg_url = array_fragment[array_fragment.length - 2]