remove last 3 caractere in js 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: remove last character from string js
var str = "Your string"
str = str.slice(0, -1);
console.log(str)
//returns "Your strin"