javascript remove last charter stings

JavaScript
var str = 'mystring';

// the character 'g' will be removed
str = str.slice(0, -1);const text = 'abcdef'
const editedText = text.slice(0, -1) //'abcde'
const s = "your_string";
const withoutLastChunk = s.slice(0, s.lastIndexOf("_"));
console.log(withoutLastChunk);asdf

Source

Also in JavaScript: