Answers for "how to remove the last character of a string in js"

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
13

remove last character from string js

var str = "Your string"
str = str.slice(0, -1); 
console.log(str)
//returns "Your strin"
Posted by: Guest on May-23-2020
0

javascript remove last character from string

const text = 'abcdef'
Posted by: Guest on March-18-2021

Code answers related to "how to remove the last character of a string in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language