Network, Computer and Programming Resources
Java - CharAt
Returns the character from a string at the specified index. The first character is at position zero and the last at length -1. var userName = "Bobba Louie" document.write(userName.charAt(4) returns an "a". Method of string. See METHODS indexOf and lastIndexOf.