JavaScripti entfernen Sie das int -Zeichen aus String

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