remove a character from the end of a string javascript code example
Example 1: javascript remove period from end of string
if (str[str.length-1] === ".")
str = str.slice(0,-1);
while (str[str.length-1] === ".")
str = str.slice(0,-1);
str = str.replace(/\.$/, "");
str = str.replace(/\.+$/, "");
Example 2: javscript remove last character
const text = 'abcdef'
const editedText = text.slice(0, -1)
Example 3: js remove last character from string
let str = "12345.00";
str = str.substring(0, str.length - 1);