In order to understand Redux, we need to introduce two ideas: the reduce function and the Flux architecture.
Functional programming is based around the idea that functions can be passed around as values, that they are…
The best way to think about programming frameworks and the design decisions behind them is by thinking about the problems that they are used to solve.
Asynchronous programming is an important concept that all students of code should understand. It boils down to this code snippet:
const a = do_something();do_something_else(a);