32 followers
I write about my experiences in software development and design, and some random thoughts that pop into my head from time to time.
Subscribe to my newsletter and never miss my upcoming articles
All JavaScript values are objects, except primitives. What's an Object? An object is a collection of properties in key: value pairs. To understand better, let's take a closer look: Object Properties Let us describe a ball using a couple of variables...
These two array methods can be difficult to differentiate due to spelling similarities and because they are both used to get chunks of an array. Let's check them out 🚀 Array.splice() 🗝Key things to note: This JavaScript method is used to add elem...
What's an Array? An array is a data structure used to store a collection of elements in an ordered form. let myArray = ["cheese", "milk", true, 8, "flamingo"]; An array can store elements of different data types - strings, numbers, booleans, objects,...
Summary This article is about setting up Doppler’s Command Line Interface (CLI) on a Windows 10 Personal Computer (PC). You will install Scoop package manager, use Scoop to get the repo for Doppler’s CLI, then install the CLI binaries on your PC. You...
A modal is an element that pops up in front of other content on a website and disables the main page. Users must then complete some action on the modal or close it before returning to the main page. Websites often use a modal to focus the user's atte...
Highlights from a tech bro's journey to mastery