String charCodeAt()
syntax: |
string.charCodeAt(index) |
where: |
position - index of the character the encoding of which is to be returned.
|
return: |
number - representing the unicode value of the character at position index of a string. Returns NaN if there is no character at the position.
|
see: |
String charAt(), String.fromCharCode()
|
description: |
This method gets the nth character code from a string.
|