2021-11-15
JavaScript Bites: Closure
The concept of a closure in JavaScript can be confusing at first, this article sheds light on what it means!
2021-11-11
JavaScript Bites: Ternary Operator
If you have ever been looking at JavaScript code and wondered what the heck the question mark and colon is doing, look no further!
2021-11-08
Tilld Devlog #1 - Building a Better Knowledge Source
In an effort to build in public, I am writing up my journey of creating a new SaaS called Tilld
2021-10-30
Why You Should Write Pure Functions
When a codebase grows in size and complexity, it becomes harder to test and reason about. Writing pure functions as the core building blocks can help alleviate those issues.
2021-10-24
Higher Order Functions & Functional Composition
JavaScript can be written in a functional way with Higher Order Functions (HOF) and functional composition - explore these concepts with some simple examples
2021-10-17
JavaScript Array .map() vs .forEach()
When you are working with arrays of data in JavaScript, when should you reach for map or foreach?
2021-10-14
ES2020: Nullish Coalescing with Babel Plugins
Simple Tutorial for setting up and using nullish coalescing with Babel
2021-10-13
Modern JavaScript Tooling: Compiling
Simple tutorial on setting up a modern JavaScript compiling/transpiling toolchain