Answers for "how to remove last index of a string 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
1

javascript remove last character

const base = 'javascript, remove last char!'

const s = base.slice(0, -1);

console.log(s); // javascript, remove last char
Posted by: Guest on February-16-2021

Code answers related to "how to remove last index of a string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language