remove last char string js 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: js remove last character from string

let str = "Hello Worlds";
str = str.slice(0, -1);

Example 3: javascript remove last character from string

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

Example 4: javascript remove last character from string

console.log(parseFloat('12345.00').toFixed(2));

Example 5: remove last char string js

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