INTERVIEW - JS
Functional programming
pass functions as parameters to other functions
immutable, predictable
Higher-order function (HOF)
extendedFunction = HOF(basic function)
parameters share scope
map is a HOF
Middleware
HOF
authentication, logging, statistics
redux middleware = 介於dispatch(action) -> reducer之間
Redux-Thunk
redux action = return object
thunk action = return function
Webpack
Webpack is a build tool that puts all of your assets, including Javascript, images, fonts, and CSS, in a dependency graph.
Babel
turn ES6/7 & JSX to ES5
HOC
Async
Last updated
Was this helpful?