var str = 'mystring'; // the character 'g' will be removed str = str.slice(0, -1); let str = "12345.00"; str = str.slice(0, -1); console.log(str);