Answers for "how to remove last two characters from 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
9

javascript remove last characters from string

const text = 'abcdef'
const editedText = text.slice(0, -1) //'abcde'
Posted by: Guest on August-27-2020
1

remove last 3 characters from string javascript

str = str.slice(0, -3);
Posted by: Guest on April-06-2020
0

javascript remove last charcter from string

maram
Posted by: Guest on April-20-2021

Code answers related to "how to remove last two characters from string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language