js remove last two characters from string code example

Example 1: remove last character from string js

var str = "Your string"
str = str.slice(0, -1); 
console.log(str)
//returns "Your strin"

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

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

Example 3: remove last 3 characters from string javascript

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

Example 4: javascript remove last character from string

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

Example 5: javascript remove last characters from string

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