how to remove the last 2 chars of a string javascript code example
Example 1: js remove last character from string
let str = "Hello Worlds";
str = str.slice(0, -1);
Example 2: javascript remove last character of string
let str = "12345.00";
str = str.slice(0, -1);
console.log(str);