remove last alphabet from word javascript code example
Example 1: how remove last letter js
const text = 'abcdef'
const editedText = text.slice(0, -1) //'abcde'
Example 2: javascript remove last word from string
var str = "I want to remove the last word.";
var lastIndex = str.lastIndexOf(" ");
str = str.substring(0, lastIndex);