Answers for "remove last few characters from string js"

9

javascript remove last character from string

const text = 'abcdef'
const editedText = text.slice(0, -1) //'abcde'
Posted by: Guest on August-27-2020

Code answers related to "remove last few characters from string js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language