javascript strip off first and last char code example Example: remove first and last character from string javascript const removeChar = (str) => str.slice(1, -1);