Skip to content
Permalink
Browse files
fixed typo in 3.3
amended type "is is" in 3.3
  • Loading branch information
charle44 committed Oct 23, 2019
1 parent ba038cb commit 8b1f989b0c83fe7332bdd0897d0fafcc790354c6
Showing 1 changed file with 1 addition and 1 deletion.
@@ -391,7 +391,7 @@ const last = employee['last name']
console.log(`${first} ${last}`)
```
In ECMA6 is is possible to extract multiple pieces of data into separate variables by destructuring using a [Desctructuring Assignment](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment#Object_destructuring). This is syntactically similar to creating object literals (see the example below).
In ECMA6 it is possible to extract multiple pieces of data into separate variables by destructuring using a [Desctructuring Assignment](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment#Object_destructuring). This is syntactically similar to creating object literals (see the example below).
```javascript
const employee = {

0 comments on commit 8b1f989

Please sign in to comment.