javascripti menghapus karakter int dari string

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