AAAnunay Abhishekinjs-arrays-by-anunay.hashnode.dev·Mar 15 · 3 min readUnderstanding Arrays in JavaScriptWhen learning programming, you often need to store multiple values. For example, imagine storing a list of: fruits student marks favorite movies daily tasks If we store them in separate variable00
AAAnunay Abhishekinoops-in-js-by-anunay.hashnode.dev·Mar 15 · 3 min readIntroduction to Object-Oriented Programming (OOP) in JavaScriptAs programs grow larger, managing code becomes more challenging. One approach that helps organize and structure code is Object-Oriented Programming (OOP). OOP allows developers to model real-world con00
AAAnunay Abhishekinunderstanding-object-in-js-by-anunay.hashnode.dev·Mar 15 · 3 min readUnderstanding Objects in JavaScriptWhen programs start handling more complex data, simple variables are often not enough. For example, imagine you want to store information about a person: Name Age City If you use separate variabl00
AAAnunay Abhishekinfunction-declaration-and-expression-by-aunay.hashnode.dev·Mar 15 · 3 min readUnderstanding Function Declarations and Function Expressions in JavaScriptWhen writing programs, we often need to perform the same task multiple times.Instead of writing the same code again and again, we can use functions. Functions help us organize code, reuse logic, and m00
AAAnunay Abhishekinthis-call-apply-bind-in-js-by-anunay.hashnode.dev·Mar 15 · 3 min readUnderstanding this, call(), apply(), and bind() in JavaScriptOne concept that confuses many JavaScript beginners is the keyword this. Sometimes this refers to an object, sometimes something else, and beginners often wonder why its value changes. The easiest way00