Como remover a última letra JS
const text = 'abcdef'
const editedText = text.slice(0, -1) //'abcde'
Your Black Hole
const text = 'abcdef'
const editedText = text.slice(0, -1) //'abcde'