strip last character javascript code example
Example 1: javascript remove last character from string
var str = 'mystring';
// the character 'g' will be removed
str = str.slice(0, -1);
Example 2: js remove last character from string
let str = "Hello Worlds";
str = str.slice(0, -1);
Example 3: remove last character from string js
var str = "Your string"
str = str.slice(0, -1);
console.log(str)
//returns "Your strin"
Example 4: how to remove lasr char from string in javascript
str=str.slice(0, -1);