how to remove the first character of string in js code example
Example 1: remove first 3 characters from string javascript
var string = "abcd";
console.log(string.substring(3)); //"d"
Example 2: remove first and last character from string javascript
var yourString = "/installers/services/";
var result = yourString.slice(1,-1);