mirror of
https://github.com/ruanyf/es6tutorial.git
synced 2025-05-24 18:32:22 +00:00
Merge pull request #859 from waitingsong/string-methods
docs(string): 增加对于多字节 UTF-16 字符元素展开方法例子
This commit is contained in:
commit
424d5e45af
@ -123,6 +123,16 @@ for (let ch of s) {
|
||||
// 61
|
||||
```
|
||||
|
||||
或者使用 `Spread` 展开运算
|
||||
|
||||
```javascript
|
||||
let arr = [...'𠮷a']; // arr.length === 2
|
||||
arr.forEach(ch => console.log(ch.codePointAt(0).toString(16)));
|
||||
// 20bb7
|
||||
// 61
|
||||
```
|
||||
|
||||
|
||||
`codePointAt()`方法是测试一个字符由两个字节还是由四个字节组成的最简单方法。
|
||||
|
||||
```javascript
|
||||
|
Loading…
x
Reference in New Issue
Block a user