JavaScript Wählen Sie Brief in Zeichenfolge aus
const str = 'Hello';
str.substring(0, 2); // => 'Hel'
Lioruby
const str = 'Hello';
str.substring(0, 2); // => 'Hel'