运用的string的方法为charCodeAt()
时间: 2023-05-25 12:04:30 浏览: 116
fromCharCode和charCodeAt 方法
5星 · 资源好评率100%
charCodeAt()是JavaScript中String对象的方法,它返回指定位置处的字符的Unicode编码。它接受一个参数index,表示要返回Unicode编码的字符在字符串中的索引位置。具体用法如下:
```javascript
let str = "hello";
console.log(str.charCodeAt(0)); // 104
console.log(str.charCodeAt(1)); // 101
console.log(str.charCodeAt(2)); // 108
console.log(str.charCodeAt(3)); // 108
console.log(str.charCodeAt(4)); // 111
```
在上面的代码中,我们创建了一个字符串"hello",然后使用charCodeAt()方法获取了每个字符的Unicode编码。注意,字符的索引从0开始。例如,str.charCodeAt(0)返回的是字符串中第一个字符'h'的Unicode编码,即104。
阅读全文