diff --git a/docs/destructuring.md b/docs/destructuring.md index 6af4b35..e587ed3 100644 --- a/docs/destructuring.md +++ b/docs/destructuring.md @@ -170,7 +170,7 @@ let [x = y, y = 1] = []; // ReferenceError: y is not defined ### 简介 -解构不仅可以用于数组,还可以用于对象。需要注意的是,对象的解构赋值只是一种浅拷贝。 +解构不仅可以用于数组,还可以用于对象。 ```javascript let { foo, bar } = { foo: 'aaa', bar: 'bbb' };