daz4126.hashnode.devFalling Back In Love With Ruby ...Ruby was the first language I learned to program properly in. I read the excellent book, "Learn to Program with Ruby" by Chris Pine (available free online btw ... https://pine.fm/LearnToProgram/) and loved how expressive the language was. Being able ...Apr 16, 2024·2 min read
daz4126.hashnode.devHow to use Array.map to render a list of items in ReactOne of the most common tasks for React developers is to render a list of data (e.g. users) onto a web page. And thanks to the the Array.map method this can be done in a simple and efficient way. In this article, you'll learn how JSX helps to make com...Dec 17, 2022·13 min read
daz4126.hashnode.devHow to use Array.filter to narrow down a list in ReactHow do you filter lists of data based on some user input? This is easily done using the Array.filter method! How Does Array.filter Work? 🤔 The Array.filter method takes an array of items and returns a completely new array that only contains the elem...Dec 17, 2022·10 min read
daz4126.hashnode.devIntroducing Nanny StateNanny State is a tiny library that I wrote that makes it easy to build state-based web apps using Vanilla JS. It's just like React and Vue, but with far less overhead. It also uses mainly Vanilla JavaScript, so you don't need to learn any new syntax....Feb 18, 2022·5 min read