Javascript remove last character
var str = "Hello";
var newString = str.substring(0, str.length - 1); //newString = Hell
Javascript remove last character
var str = "Hello";
var newString = str.substring(0, str.length - 1); //newString = Hell
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 ]
*/
remove last from array javascript
var fruits = ["Banana", "Orange", "Apple", "Mango"];
document.write(fruits);
document.write("<br>");
fruits.pop();
document.write(fruits)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us