string.codePointAt()是JavaScript中的內置函數,用於返回非負整數值,即給定字符串的指定元素的代碼點值。
不同元素的代碼點值列表:
用法:
string.codePointAt(A)
參數:它接受一個參數,該參數顯示字符串中元素的索引。索引從零(0)開始。
返回值:它返回由字符串中的參數表示的元素的代碼點值。如果指定位置(即“A”th索引)上沒有元素,則返回undefined。
代碼1:
<script>
// Taking a string "gfg"
a = "gfg"
// Pointing each elements of the string
b = a.codePointAt(0);
c = a.codePointAt(1);
d = a.codePointAt(2);
// Printing the code point value of each element
document.write(b + "<br>")
document.write(c + "<br>")
document.write(d)
</script>
輸出:
103 102 103
代碼2:
<script>
// Taking a string "gfg"
a = "gfg"
// Pointing 4th index of the string
// index starts from 0
b = a.codePointAt(3);
// Printing the code point value
document.write(b + "<br>")
</script>
輸出:
undefined
注意:輸出未定義,因為在“gfg”中第4個索引處沒有元素。
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 JavaScript | string.codePointAt()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。