js delete first and last character of string code example
Example 1: remove first and last character from string javascript
var yourString = "/installers/services/";
var result = yourString.slice(1,-1);
Example 2: remove first and last character javascript
// best implementation
const removeChar = (str) => str.slice(1, -1);