Answers for "javascript trim x characters off end of string"

13

remove last character from string js

var str = "Your string"
str = str.slice(0, -1); 
console.log(str)
//returns "Your strin"
Posted by: Guest on May-23-2020
9

how to remove lasr char from string in javascript

str=str.slice(0, -1);
Posted by: Guest on June-21-2020

Code answers related to "javascript trim x characters off end of string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language