Alternative to Switch Statements
Learn about the alternatives to using switch statements.
We'll cover the following...
In Redux, most reducers
are just switch
statements over action.type
. Since the switch
syntax can be hard to read and prone to errors, a few libraries try to make writing reducers easier and cleaner.
While it is most common for a
reducer
...