Answers for "pop last two chars in string js"

11

remove last char from string JavaScript

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

javascript remove last charcter from string

maram
Posted by: Guest on April-20-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language