search and replace ```\n< with ```\n\n< to ensure there's an empty line before closing tags
1.3 KiB
1.3 KiB
id, title, challengeType, isRequired, videoUrl, localeTitle
id | title | challengeType | isRequired | videoUrl | localeTitle |
---|---|---|---|---|---|
5a24c314108439a4d403614c | Get State from the Redux Store | 6 | false | 从Redux商店获取状态 |
Description
getState()
方法检索Redux存储对象中保存的当前state
。 Instructions
store.getState()
从store
检索state
,并将其分配给新变量currentState
。 Tests
tests:
- text: 对于初始状态,redux存储的值应为5。
testString: assert(store.getState()===5);
- text: 应该存在一个变量<code>currentState</code> ,并且应该为其分配Redux存储的当前状态。
testString: getUserInput => assert(currentState === 5 && getUserInput('index').includes('store.getState()'));
Challenge Seed
const store = Redux.createStore(
(state = 5) => state
);
// change code below this line
Solution
// solution required
/section>