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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。