remove first character of string js code example
Example 1: javascript remove first character from string
let str = " hello";
str = str.substring(1);
Example 2: javascript remove first character from string
var newStr = str.substring(1);
Example 3: remove first and last character javascript
// best implementation
const removeChar = (str) => str.slice(1, -1);