Navigator 2.0, Internet Explorer 3.0
string.charAt(n)
The index of the character that should be returned from string.
The nth character of string.
String.charAt() returns the nth character of the string string. The first character of the string is numbered 0. If n is not between 0 and string.length - 1, then this method returns an empty string. Note that JavaScript does not have a character datatype that is distinct from the string type, so the returned character is a string of length 1.