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

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
3

how to remove the last character from a string in javascript

var str = "Hello TecAdmin!";
var newStr = str.slice(0, -1);
Posted by: Guest on October-05-2020
0

javascript remove last character from string

const text = 'abcdef'
text.slice(0, -1) //'abcdef
Posted by: Guest on May-27-2021

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language