- 'skip on of the values' -> 'skip one of the values'
- add missing comma: 'When we destructure, the name of the variable...'
- remove stray '//with destructuring' comment left in the without-
destructuring example (the with-destructuring version has its own
section below)
If we like to skip on of the values in the array we use additional comma. The comma helps to omit the value at that specific index
If we like to skip one of the values in the array we use additional comma. The comma helps to omit the value at that specific index
```js
```js
const numbers = [1, 2, 3]
const numbers = [1, 2, 3]
@ -184,7 +184,7 @@ Node Express MongoDB
### Destructuring Object
### Destructuring Object
When we destructure the name of the variable we use to destructure should be exactly the same as the key or property of the object. See the example below.
When we destructure, the name of the variable we use to destructure should be exactly the same as the key or property of the object. See the example below.