Answers for "how to remove last element in js"

26

javascript remove last element from array

array.pop();   //returns popped element
//example
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.pop();  // fruits= ["Banana", "Orange", "Apple"];
Posted by: Guest on July-10-2020
8

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]
Posted by: Guest on August-06-2020

Code answers related to "how to remove last element in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language