From 8b1f989b0c83fe7332bdd0897d0fafcc790354c6 Mon Sep 17 00:00:00 2001 From: "Luke Charles (charle44)" Date: Wed, 23 Oct 2019 15:06:47 +0100 Subject: [PATCH] fixed typo in 3.3 amended type "is is" in 3.3 --- 05 JavaScript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/05 JavaScript.md b/05 JavaScript.md index 27afe040..9604dce5 100644 --- a/05 JavaScript.md +++ b/05 JavaScript.md @@ -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 = {