/tag/Beginners
- 18 September 2022
useReducer > useState
Today I want to talk a little bit about useReducer and how it can be used as a fantastic way to manage complex state requirements without reaching for a library or peppering your codebase with multiple useState calls. In the following example, we are going to look at a users pr...
- 9 September 2022
A Quick Look At Some Popular Array Methods In JavaScript
Today is going to be a quick look at some of the more popular array methods in JavaScript. Each example will use the same set of data, an array of pet objects with different types of animal, their breed and their name. So lets dive in. Array.prototype.map() .map() Creates a n...