javascripti удалить символ int из строки

let str = 'Hello';
 
str = str.slice(1);
console.log(str);
Sore Sandpiper