remove last three characters from string javascript code example

Example 1: javascript remove last character from string

var str = 'mystring';

// the character 'g' will be removed
str = str.slice(0, -1);

Example 2: remove last character from string javascript

const text = 'abcdef'
const editedText = text.slice(0, -1) //'abcde'

Example 3: how to remove lasr char from string in javascript

str=str.slice(0, -1);

Example 4: remove last 3 characters from string javascript

str = str.slice(0, -3);

Example 5: javascript remove last character from string

let str = "12345.00";
str = str.substring(0, str.length);
console.log(str);