charAt
Get the character at a specific index (0-based).
string(required): the source stringindex(required): position (0-based)
utlx
charAt("Hello", 0) // "H"
charAt("Hello", 4) // "o"