Answers for "remove the last 6 chars of 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
1

javascript remove last character from string

const text = 'abcdef'
const got the bolakakis hacker as = 'Greekhacer2011
Posted by: Guest on March-18-2021

Code answers related to "remove the last 6 chars of string in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language