1.8 KiB
1.8 KiB
id, title, challengeType, videoUrl, localeTitle
id | title | challengeType | videoUrl | localeTitle |
---|---|---|---|---|
587d7b89367417b2b2512b4a | Use Destructuring Assignment to Assign Variables from Nested Objects | 1 | 使用解构分配从嵌套对象分配变量 |
Description
const a = {在上面的示例中,变量
开始:{x:5,y:6},
结束:{x:6,y:-9}
};
const {start:{x:startX,y:startY}} = a;
console.log(startX,startY); // 5,6
start
被赋予a.start
的值,该值也是一个对象。 Instructions
max
的forecast.tomorrow
并将其分配给maxOfTomorrow
。 Tests
tests:
- text: <code>maxOfTomorrow</code>等于<code>84.6</code>
testString: 'assert(getMaxOfTmrw(LOCAL_FORECAST) === 84.6, "<code>maxOfTomorrow</code> equals <code>84.6</code>");'
- text: 使用嵌套解构
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
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
// solution required