Answers for "remove first 3 and last 3 char from string javascript"

2

remove first 3 characters from string javascript

var string = "abcd";
console.log(string.substring(3)); //"d"
Posted by: Guest on December-13-2019
0

remove first and last character javascript

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

Code answers related to "remove first 3 and last 3 char from string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language