Answers for "how to remove the last word of a string in javascript"

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
75

js remove last character from string

let str = "Hello Worlds";
str = str.slice(0, -1);
Posted by: Guest on January-16-2020
-1

javascript remove last character from string

let str = "12345.00";
Posted by: Guest on January-11-2021

Code answers related to "how to remove the last word of a string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language