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`.