how to remove last char from string in js 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);