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