typescript remove from end of string if ends with code example
Example: javascript remove last character from string
let str = "12345.00";
str = str.substring(0, str.length - 1);
console.log(str);
let str = "12345.00";
str = str.substring(0, str.length - 1);
console.log(str);