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

Merge pull request #359 from JChehe/patch-1

Update object.md——错别字:“预算”->“运算”
This commit is contained in:
Ruan YiFeng 2017-03-29 14:09:33 +08:00 committed by GitHub
commit 0c20540bdb

View File

@ -991,7 +991,7 @@ function entries(obj) {
## 对象的扩展运算符
《数组的扩展》一章中,已经介绍过扩展算符(`...`)。
《数组的扩展》一章中,已经介绍过扩展算符(`...`)。
```javascript
const [a, ...b] = [1, 2, 3];