javascript take off the last character 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: how to remove the last character from a string in javascript
var str = "Hello TecAdmin!";
var newStr = str.slice(0, -1);