pop last letter 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 javascript
console.log(parseFloat('12345.00').toFixed(1));