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