delete last element of string javascript code example
Example: javascript remove last character from string
var str = 'mystring';
// the character 'g' will be removed
str = str.slice(0, -1);
var str = 'mystring';
// the character 'g' will be removed
str = str.slice(0, -1);