From 34019a194b0c52f53d3127d7760fd092eb9331ee Mon Sep 17 00:00:00 2001 From: Maja Persson <31646734+majapersson@users.noreply.github.com> Date: Thu, 18 Oct 2018 23:40:56 +0200 Subject: [PATCH] Removed duplicated sentence --- 18-2 - Destructuring Objects.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/18-2 - Destructuring Objects.md b/18-2 - Destructuring Objects.md index 965281b..91158f9 100644 --- a/18-2 - Destructuring Objects.md +++ b/18-2 - Destructuring Objects.md @@ -18,7 +18,7 @@ const wes = { }; ``` -For example here, I already used twitter as a variable. I can't use it again, but I'm stuck, because this object gives me twitter as a key and this object gives me twitter as a key. What you can do is you can rename them as you destructure them. +For example here, I already used twitter as a variable. I can't use it again, but I'm stuck, because this object gives me twitter as a key. What you can do is you can rename them as you destructure them. So - I want the `twitter` property, but I want to call it `tweet`. I want the `facebook` property, but I want to call it `fb`.