js remove last 3 characters and add 3 new characters code example
Example: remove last character from string js
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);