#javascript
Read more stories on Hashnode
Articles with this tag
.toLocaleString and friends are some of the most underrated features of JavaScript. I came over them through a few different wanderings through MDN...
Just yesterday, Node.js v18 was released as the current stable version. Here's a quick walkthrough of some of the new features. Global fetch! Node.js...
A few minutes ago, I published PlanckColors. It's probably the smallest node module for colors on the internet, at just 119 bytes minzipped! It's so...
A few days ago, I was looking around for tools to write my blog. I knew about MDX, but I wasn't really good at React and friends, which seemed to be...
It's about time we stop using console.log to debug things. While console.* are really powerful tools, it's a pain to maintain. Most of us can use our...
Functional programming is a way of thinking about programs by composing pure functions. It tries to avoid shared state, mutability, and side effects....