W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
charCodeAt()方法返回一個數(shù)字,指示給定索引處字符的Unicode值。Unicode代碼點的范圍為0到1,114,111。前128個Unicode代碼點是ASCII字符編碼的直接匹配。charCodeAt()始終返回小于65,536的值。
string.charCodeAt(index);
index - 小于字符串長度的0到1之間的整數(shù);如果未指定,則默認為0。
返回一個數(shù)字,指示給定索引處字符的Unicode值。如果給定索引的值不在字符串長度的0到1之間,則返回NaN。
var str = new String("This is string"); console.log("str.charAt(0) is:" + str.charCodeAt(0)); console.log("str.charAt(1) is:" + str.charCodeAt(1)); console.log("str.charAt(2) is:" + str.charCodeAt(2)); console.log("str.charAt(3) is:" + str.charCodeAt(3)); console.log("str.charAt(4) is:" + str.charCodeAt(4)); console.log("str.charAt(5) is:" + str.charCodeAt(5));
在編譯時,它將在JavaScript中生成相同的代碼。
其輸出如下:
str.charAt(0) is:84 str.charAt(1) is:104 str.charAt(2) is:105 str.charAt(3) is:115 str.charAt(4) is:32 str.charAt(5) is:105
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: