Answers for "eremove last 2 char by a string js"

9

javascript remove last characters from string

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