My reading journal for Code Fellows
What is the first principle of Redux?
what is a store and what do we use our reducers for within that store?
Name three Redux store methods given to us by createStore and describe their use.
reducer (Function): A reducing function that returns the next state tree, given the current state tree and an action to handle.[preloadedState] (any): The initial state. You may optionally specify it to hydrate the state from the server in universal apps, or to restore a previously serialized user session. If you produced reducer with combineReducers, this must be a plain object with the same shape as the keys passed to it. Otherwise, you are free to pass anything that your reducer can understand.
[enhancer] (Function): The store enhancer. You may optionally specify it to enhance the store with third-party capabilities such as middleware, time travel, persistence, etc. The only store enhancer that ships with Redux is applyMiddleware().
Explain to a non-technical recruiter what combineReducers() does and why it is useful.
Looking ahead at this module’s course schedule, What do you look forward to learning?
What are your learning goals after reading and reviewing the class README?