remove last item in string javascript code example

Example 1: js remove last character from string

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

Example 2: javascript remove last character from string

var str = "Hello";
var newString = str.substring(0, str.length - 1); //newString = Hell

Example 3: remove last character from string js

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

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

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

Example 5: how to remove the last character from a string in javascript

var str = "Hello TecAdmin!";
var newStr = str.slice(0, -1);