String.fromCodePoint()是JavaScript中的内置函数,用于返回给定代码点值(ASCII值)序列的字符串或元素。
不同元素的代码点值列表:
用法:
String.fromCodePoint(a1, a2, a3, ....)
参数:参数a1,a2等是代码点值的序列。
返回值:它为给定的代码点值序列返回相应的字符串或元素。
代码1:
<script>
// Taking some code point values
a = String.fromCodePoint(42);
b = String.fromCodePoint(65, 90);
c = String.fromCodePoint(66, 65, 102);
// Printing the corresponding elements of
// the code point value.
document.write(a + "<br>")
document.write(b + "<br>")
document.write(c + "<br>")
</script>
输出:
* AZ BAf
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 JavaScript | String.fromCodePoint()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。