JavaScript Reference/Javascript Methods/charCodeAt

Материал из Web эксперт
Версия от 08:22, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"charCodeAt()" Example

    
<html>
<body>
<button onclick="var myS = new String("Sample String"); 
                 alert(myS.charCodeAt(3));">get char at an index</button>
</body>
</html>



"charCodeAt()" is applied to

+----------------+--------------------------------------------------------------+
| Applied_To     |String                                                        |
+----------------+--------------------------------------------------------------+



"charCodeAt()" Syntax, Parameters and Note

Note:
Unicode value of the character at the specified index in string.
    
Syntax:
    
stringName.charCodeAt(param1)

Parameters:
    param1   Required; the index position of the character.