AKAyush Kumarinayushblogjs.hashnode.dev00Object-Oriented Programming (OOP) in JavaScriptMar 14 · 3 min read · What is OOP? Object-Oriented Programming (OOP) is a way of organizing code using objects and classes. Instead of writing everything separately, we group related data and behavior together. This makes Join discussion
AKAyush Kumarinayushblogjs.hashnode.dev00Function Declaration vs Function ExpressionMar 7 · 3 min read · When writing programs, we often need to repeat the same logic multiple times. Instead of writing the same code again and again, we use functions. Functions help us organize code, reuse logic, and makeJoin discussion
AKAyush Kumarinayushblogjs.hashnode.dev00Methods of PromisesFeb 28 · 4 min read · A Promise has only three states, resolved, rejected, and pending, methods of promises reacts to these states. But there is no specific method for pending because it is the default state of every promiJoin discussion
AKAyush Kumarinayushblogjs.hashnode.dev00The Magic of this, call(), apply(), and bind() in JavaScriptFeb 27 · 2 min read · What is this in JavaScript? this is a keyword in javascript which refers to an object always who is calling the function. Object A | | calls ↓ FunctJoin discussion
AKAyush Kumarinayushblogjs.hashnode.dev00Arrays in JavaScript Feb 26 · 3 min read · What Are Arrays and Why Do We Need Them? An array is a collection of multiple values stored in order inside a single variable. To store similar data in one place, an array is the best option, for examJoin discussion