Answers for "remove x amount of characters from the end of a string javascript"

28

javascript remove last character from string

var str = "Hello";
var newString = str.substring(0, str.length - 1); //newString = Hell
Posted by: Guest on July-23-2019
9

how to remove lasr char from string in javascript

str=str.slice(0, -1);
Posted by: Guest on June-21-2020

Code answers related to "remove x amount of characters from the end of a string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language