RMRich Minardiinrcatwr.hashnode.dev·Oct 30, 2020 · 3 min readI Made a Website for my Band in the 1990sI have been a dabbler in web technology for a while now. Over the years I've built things using the different tools that were available. This is the story of how I was inspired to make a website for my band. Image via: twintone.com In the late 90s...00
RMRich Minardiinrcatwr.hashnode.dev·Sep 20, 2020 · 1 min readRemoving zeros from an array with JavaScript's filter() methodI recently completed a coding challenge on edabit.com where one of the objectives was to remove all 0 values from an input array. Naturally I reached for the filter() method to do something like this: const array = [1, 0, 2, 0, 3, 0, 0, 4]; functio...00