javascript remove first "/" character code example
Example 1: javascript remove first character from string
var newStr = str.substring(1);
Example 2: remove first and last character javascript
// best implementation
const removeChar = (str) => str.slice(1, -1);