how to remove lasr char from string in javascript code example
Example 1: remove last character from string js
var str = "Your string"
str = str.slice(0, -1);
console.log(str)
//returns "Your strin"
Example 2: how to remove lasr char from string in javascript
str=str.slice(0, -1);
Example 3: js omit last string
"somestring0".slice(0, -1)
// "somestring"