Destructuring Assignment to Assign Variables from Nested Objects - am I missing something

Tell us what’s happening:
Am I missing something? I’m still not completing the task.
I had the same problem with the lesson prior as well.

Screenshot:

Your code so far


const LOCAL_FORECAST = {
  today: { min: 72, max: 83 },
  tomorrow: { min: 73.3, max: 84.6 }
};

function getMaxOfTmrw(forecast) {
  "use strict";
  // change code below this line
  //const maxOfTomorrow = undefined; // change this line
  const { tomorrow : { max: maxOfTomorrow}} = LOCAL_FORECAST; // change this line
  // change code above this line
  return maxOfTomorrow;
}

console.log(getMaxOfTmrw(LOCAL_FORECAST)); // should be 84.6

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.119 Safari/537.36.

Link to the challenge:

Use the argument passed to the function.

1 Like