Como Quitar el ultimo caracter de un string

const text = 'abcdef'
const editedText = text.slice(0, -1) //'abcde'
Your Black Hole