Как заменить первый и последний символ строки в JavaScript

const removeChar = (str) => str.slice(1, -1);
Fylls