Answers for "remove the last 4 charachters from a string js"

75

js remove last character from string

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

Code answers related to "remove the last 4 charachters from a string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language