Answers for "replace only work for first character in js"

2

how to replace first and last character of string in javascript

const removeChar = (str) => str.slice(1, -1);
Posted by: Guest on August-17-2020

Code answers related to "replace only work for first character in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language