how to drop period off end of sentence in javascript code example
Example: javascript remove last character from string
let str = "12345.00";
str = str.substring(0, str.length);
console.log(str);
let str = "12345.00";
str = str.substring(0, str.length);
console.log(str);