1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-25 03:02:21 +00:00

Merge pull request #213 from UFOwl/patch-2

Update string.md
This commit is contained in:
Ruan YiFeng 2016-05-28 21:03:32 -05:00
commit 504d753040

View File

@ -133,7 +133,7 @@ String.fromCodePoint(0x78, 0x1f680, 0x79) === 'x\uD83D\uDE80y'
// true
```
上面代码中,如果`String.fromCharCode`方法有多个参数,则它们会被合并成一个字符串返回。
上面代码中,如果`String.fromCodePoint`方法有多个参数,则它们会被合并成一个字符串返回。
注意,`fromCodePoint`方法定义在`String`对象上,而`codePointAt`方法定义在字符串的实例对象上。