JavaScript Pilih huruf dalam string

const str = 'Hello';
str.substring(0, 2); // => 'Hel'
Lioruby