Use Destructuring Assignment to Assign Variables from Objects

Tell us what’s happening:

I don’t understand this at all.

Instructions:

Consider the following ES5 code:

var voxel = {x: 3.6, y: 7.4, z: 6.54 };
var x = voxel.x; // x = 3.6
var y = voxel.y; // y = 7.4
var z = voxel.z; // z = 6.54

Ok awesome. An object with key value pairs, that we are then assigned to global variables. I know this! But then…

Here’s the same assignment statement with ES6 destructuring syntax:

const { x, y, z } = voxel; // x = 3.6, y = 7.4, z = 6.54

What? Thats not at all what the previous code was. First the keys don’t have values. So x shouldn’t be 3.6. Second no global variables are being assigned to anything. This is literally just equal to this:

const Obj = {x,y,z};

Aka an object with declared keys (no values).
I am so stuck. Read the ntructions like 20 times and I still have 0 clue about what I have to do.

Link to the challenge:

1 Like

Ok. I took a break. Calmed downed, and read the MDN entry on Destructuring assignment. Saw some videos and I kind of got it.

Correct me if I am wrong. This ES6 feature is used to assign object values to external variables. Yes?
Anyhow, this is my new code and its still wrong:

function getLength(str) {
  "use strict";

  // change code below this line
  const length = {x: str.length};
  const {x : len} = length; // change this
  // change code above this line

  return len; // you must assign length to len in line

}

console.log(getLength('FreeCodeCamp'));

Says:

destructuring with reassignment was used

with an X next to it.

Hi

While the solution is fairly easy the instructions are a little baffling. You are not alone in being confused by the challenge.

What they want is for you to assign the length property of str to a local variable len using destructuring assignment, all on one line.

This is their example that pertains to the challenge solution

const { x : a, y : b, z : c } = voxel // a = 3.6, b = 7.4, c = 6.54

//property x of voxel is assigned to local variable a

so you need to do
property length of str is assigned to local variable len

8 Likes

Thank you! Now I get it!

I can see how this aught be helpful now.

2 Likes

Please show this code bro.

this code was super well explained if you arent getting it dot just ask for the answer track the variables and try to understand the syntax for what is going on.

You’re a godsend! Thanks so much for helping me understand the syntax :slight_smile:

1 Like

thanks! now the instructions are much easier to understand.

Hey @pegofleg,
It is always advisable to create a new topic for your problem by using the “Ask For Help” button on the challenge page.