Answers for "js replace first character"

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 "js replace first character"

Code answers related to "Javascript"

Browse Popular Code Answers by Language