JJJainam Jaininunderstanding-javascript-methods.hashnode.dev00Understanding Object-Oriented Programming in JavaScript4d ago · 3 min read · As programs grow larger, managing code becomes difficult if everything is written in a single place. Developers solve this by organizing code using Object-Oriented Programming, usually called OOP. OOPJoin discussion
JJJainam Jaininunderstanding-javascript-methods.hashnode.dev00Understanding Objects in JavaScript5d ago · 3 min read · When programs become larger, we often need to store related information together. For example, imagine storing information about a person: name age city If we store each value in separate variablJoin discussion
JJJainam Jaininunderstanding-javascript-methods.hashnode.dev00Understanding Functions in JavaScript5d ago · 3 min read · When writing programs, we often repeat the same logic multiple times. Instead of writing the same code again and again, programming languages allow us to group instructions together into functions. A Join discussion
JJJainam Jaininunderstanding-javascript-methods.hashnode.dev00Understanding this, call(), apply(), and bind() in JavaScript5d ago · 3 min read · When learning JavaScript, one concept that often causes confusion is the keyword this. At first it looks strange, but the idea behind it is actually simple. A good way to think about this is: this refJoin discussion
JJJainam Jaininunderstanding-javascript-methods.hashnode.dev00Understanding Arrays in JavaScript5d ago · 3 min read · When writing programs, we often need to store multiple related values. For example: A list of fruits Marks of students A list of tasks to complete If we store these values individually, the code Join discussion