I'm a software engineer who makes it a priority to deep-dive into the fundamentals of web development and software engineering in order to become the best developer I can be.
React Testing Library (RTL) is a specialized unit testing library designed specifically for React applications. The goal of the library is to assist...
By default JavaScript is synchronous. The JavaScript engine maintains a stack data structure called the call stack to keep track of function...
Linked lists are a linear data structure consisting of nodes that are not stored contiguously (right next to each other) in memory. Each node of the...
To start off our computer science fundamentals series, we will cover complexity analysis and Big O. Prior to understanding data structures and...
What are hooks Hooks are the new feature introduced in the React 16.8 version. It allows you to use state and other React features without writing a...