remove first string until a character javascript code example
Example 1: javascript remove first character from string
let str = " hello";
str = str.substring(1);
Example 2: javascript remove first space in string
//use trim() on your string. It removes first and last whitepsaces
let str = " aa bb ";
console.log(str.trim()); // "aa bb"