Why You Should Avoid Using Bootstrap and Tailwind CSS Together on the Same ProjectFeb 23, 2023·4 min read
Call Stack in JavaScriptIntroduction 🎗️ Call Stack is a vital concept in the JavaScript programming language. It is a data structure that keeps track of the execution of a program. Understanding the call stack is crucial for debugging code and optimizing performance. In th...Mar 19, 2023·4 min read
Introduction to Circular Linked ListWhat is Circular Linked List 🎗️ A circular linked list is a type of data structure in which the last node points to the first node, forming a circular chain. In a circular linked list, there is no NULL at the end of the list. Instead, the last node ...Dec 23, 2022·6 min read
Introduction to Linked ListWhat is Linked List? 🎗️ A linked list is a linear data structure that includes a series of connected nodes. Here, each node stores the data and the address of the next node. For example, image credits: programiz.com Important Concept 🎗️ The linke...Dec 14, 2022·11 min read