Answers for "how to remove the last string from a list java script"

115

javascript remove last character from string

var str = 'mystring';

// the character 'g' will be removed
str = str.slice(0, -1);
Posted by: Guest on October-18-2020
0

remove last from array javascript

var fruits = ["Banana", "Orange", "Apple", "Mango"];
document.write(fruits);
document.write("<br>");
fruits.pop();

document.write(fruits)
Posted by: Guest on April-19-2021

Code answers related to "how to remove the last string from a list java script"

Code answers related to "Javascript"

Browse Popular Code Answers by Language