Answers for "remove a word from string from last only in javascript ?"

139

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

javascript remove last character from string

str.slice(0, -1);
Posted by: Guest on December-14-2021

Code answers related to "remove a word from string from last only in javascript ?"

Code answers related to "Javascript"

Browse Popular Code Answers by Language