Answers for "javascript pop last caracter of string if end"

103

js remove last character from string

let str = "Hello Worlds";
str = str.slice(0, -1);
Posted by: Guest on January-16-2020
11

javascript remove last character from string

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

Code answers related to "javascript pop last caracter of string if end"

Code answers related to "Javascript"

Browse Popular Code Answers by Language