Answers for "get array without last element js"

25

js take last item in array

const heroes = ["Batman", "Superman", "Hulk"];
const lastHero = heroes.pop(); // Returns last elment of the Array
// lastHero = "Hulk"
Posted by: Guest on March-16-2020
0

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 ]
*/
Posted by: Guest on February-21-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language