#javascript
Read more stories on Hashnode
Articles with this tag
At some point in your JavaScript journey, you'll read, watch, or hear something along the lines of "Arrays are objects!" Then you will most likely...
Introducing Color Palettes A well-curated color palette can be fundamental to your frontend aesthetic. It can set the tone for your website,...
Array.reduce and its Parameters and reduceRight. One last useful feature of Array.reduce() are its optional parameters. Let's go through them. There...
Real-world uses for Array.reduce Many of the examples we've gone through have been contrived and unrealistic of the kind of data we manage daily. In...
When Should I use Array.reduce? Javascript Arrays have many built-in array methods that can sort out some pretty complex logic for you. A simple...
Tally an array of wardrobe items into an organized Object closet. ยท The magic of Array.reduce() In our introduction to Array.reduce, we learned what...