Answers for "how to take out the last character of the string in javascrit"

9

how to remove lasr char from string in javascript

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

js omit last string

"somestring0".slice(0, -1)
// "somestring"
Posted by: Guest on June-05-2020

Code answers related to "how to take out the last character of the string in javascrit"

Code answers related to "Javascript"

Browse Popular Code Answers by Language