PKPankaj kumarinleanwithpankaj.hashnode.dev·Apr 22 · 7 min readLinux File System HuntingLinux is not a single monolithic black box that run on magic, Linux is a collection of independent and purposeful smaller systems moving in unison and appears like one unified structure. To really und00
PKPankaj kumarinleanwithpankaj.hashnode.dev·Mar 15 · 4 min readJavaScript Array Methods JavaScript Array Methods Every Beginner Must Know Arrays are one of the most important data structures in JavaScript. When working with lists of data (numbers, names, products, etc.), JavaScript provi00
PKPankaj kumarinleanwithpankaj.hashnode.dev·Mar 15 · 4 min readThe Magic of this, call(), apply(), and bind() in JavaScriptUnderstanding this is very important in JavaScript because it tells us which object is executing the function. In this guide we will learn: What this means this inside normal functions this inside 00
PKPankaj kumarinleanwithpankaj.hashnode.dev·Mar 15 · 5 min readUnderstanding Object-Oriented Programming in JavaScriptAs programs grow bigger, managing code becomes harder.To organize code better, JavaScript supports Object-Oriented Programming (OOP). OOP helps us structure code using objects and classes, making prog00
PKPankaj kumarinleanwithpankaj.hashnode.dev·Mar 15 · 5 min readUnderstanding Objects in JavaScriptIn JavaScript, objects are used to store related information together. They help us represent real-world entities like: a person a student a car a product Instead of storing data in many separat00