--- id: 587d7b89367417b2b2512b4a title: Use Destructuring Assignment to Assign Variables from Nested Objects localeTitle: Utilice la asignación de destrucción para asignar variables de objetos anidados challengeType: 1 --- ## Description
Podemos igualmente destruir objetos anidados en variables. Considera el siguiente código:
const a = {
  start: { x: 5, y: 6},
  end: { x: 6, y: -9 }
};
const { start : { x: startX, y: startY }} = a;
console.log(startX, startY); // 5, 6
En el ejemplo anterior, a la variable start se le asigna el valor de a.start , que también es un objeto.
## Instructions
Utilice la asignación de desestructuración para obtener el max de forecast.tomorrow y asignarlo a maxOfTomorrow .
## Tests
```yml tests: - text: maxOfTomorrow es igual a 84.6 testString: 'assert(getMaxOfTmrw(LOCAL_FORECAST) === 84.6, "maxOfTomorrow equals 84.6");' - text: se utilizó desestructuración anidada testString: 'getUserInput => assert(getUserInput("index").match(/\{\s*tomorrow\s*:\s*\{\s*max\s*:\s*maxOfTomorrow\s*\}\s*\}\s*=\s*forecast/g),"nested destructuring was used");' ```
## Challenge Seed
```js 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 // change code above this line return maxOfTomorrow; } console.log(getMaxOfTmrw(LOCAL_FORECAST)); // should be 84.6 ```
## Solution
```js // solution required ```