Karakter String Akses JavaScript

const a = 'hello';
console.log(a[1]); // "e"
SAMER SAEID