how to remove last element from an 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: javascript remove last item

array.pop();

// Example
var colors = ['Yellow', 'Red', 'Blue', 'Green'];
var removedColor = colors.pop(); // Green
console.log(colors); // ['Yellow', 'Red', 'Blue']

Example 4: remove last element from array javascript

array.pop();

Example 5: remove last element from array javascript

// Method - 1
var arr = [1, 2, 3, 4, 5];

var last = arr.pop();
console.log(arr);
/*
    Output: [ 1, 2, 3, 4 ]
*/

// Method - 2
var arr = [1, 2, 3, 4, 5];

arr.splice(arr.length - 1);
console.log(arr);
/*
    Output: [ 1, 2, 3, 4 ]
*/

// Method - 3
var _ = require("lodash");

var arr = [1, 2, 3, 4, 5];
arr = _.initial(arr);
console.log(arr);
/*
    Output: [ 1, 2, 3, 4 ]
*/

// Method - 4
var _ = require("underscore");

var arr = [1, 2, 3, 4, 5];
var n = 3;

arr = _.initial(arr, n);
console.log(arr);
/*
    Output: [ 1, 2 ]
*/

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

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