JavaScript Remova o último caractere da string
var str = 'mystring';
// the character 'g' will be removed
str = str.slice(0, -1);
Coding Random Things
var str = 'mystring';
// the character 'g' will be removed
str = str.slice(0, -1);
let str = "Hello Worlds";
str = str.slice(0, -1);
const text = 'abcdef'
const editedText = text.slice(0, -1) //'abcde'
var str = "Your string"
str = str.slice(0, -1);
console.log(str)
//returns "Your strin"
str=str.slice(0, -1);
str = str.slice(0, -3);