how to remove first character and last character from string in javascript code example
Example 1: delete first character javascript
let str = 'Hello';
str = str.slice(1);
console.log(str);
/*
Output: ello
*/
Example 2: remove first and last character javascript
// best implementation
const removeChar = (str) => str.slice(1, -1);