The charAt() of a String returns a new string consisting of the single charactuer (UTF-16 code unit) at the given index.

    
    const sentence = 'The quick brown fox jumps over the lazy dog.';

    const sentenceCharAt = sentence.charAt(4);

    console.log(sentenceCharAt);
    // "q"