1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-24 18:32:22 +00:00

Update object.md

错别字:“预算”->“运算”
This commit is contained in:
刘健超 2017-03-28 19:34:01 +08:00 committed by GitHub
parent 3619d2121c
commit b8959b2e6d

View File

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