Blog Posts

Fundamentals of Testing in JavaScript

22nd Oct 2022

Course notes for the "Fundamentals of Testing in JavaScript" module of the Testing Javascript course by Kent C. Dodds

Sorting With Insertion Sort

7th Nov 2021

An introduction to one of the basic sorting algorithms

Lexical Scope in JS - The Basics

31st Oct 2021

How does JS know which variables are accessible by any given statement, and how does it handle two variables of the same name?