Redis Getting Started with Redis and Node.JS Redis is a powerful piece of technology which lets us store data in memory. Let's look at how to use it with Node.JS
🔎 Javascript Array Some Method Javascript The some array method lets us check if some elements pass certain criteria. Let's look at how it works.
⚙️ Javascript Array Every Method Javascript The every method in Javascript lets us do logical tests on every member of an array. Let's look at how it works.
🤔 Javascript: Check if an Array is a Subset of Another Array Javascript Ever wondered how to check if an array is a subset of another array? Find out in this guide.
Creating and Generating UUIDs with Javascript Javascript UUIDs or Universally Unique Identifiers are an easy way to reference various objects and elements in Javascript. Let's look at how to make them.
Javascript Array Concat Method Javascript The concat method is used to return shallow copies of merged arrays. Shallow copies contain the same reference as the original array sliced.
Javascript Immediately invoked function expressions (IIFE) Javascript Immediately invoked functions or anonymous functions are found all over Javascript. Let's look at how they work.
Javascript loops: for vs forEach vs for.. in vs for.. of Javascript There are so many ways to iterate over something in Javascript, but what do they all mean?.
Removing the last element of an array in Javascript Javascript It's one of the most common operations we do in Javascript, and there are a bunch of ways to do it. Let's compare.
Javascript Ordinals: Adding st, nd, rd and th suffixes to a number Javascript When we add ordinal suffixes to a number, it can differ by country, language, and locale. Let's look at a way to reliably accomplish this.
Git: Renaming a Branch Git Renaming a branch can be accomplished with the git branch command. Let's look at how it works.
Git Merge: Merging Changes from other Branches Git Git merges are an important part of collaborating with git and managing branches. Let's look at how it works.