A fun exercise to help understand the differences and use cases of these two related hooks| kentcdodds.com
Memoization is the act of storing the result of an expensive function call, and re-using the result whenever it’s required, instead of re-ca| Emma Goto