SKSintu Kinsintu.hashnode.dev·Mar 14 · 4 min readJavaScript Operators: The Basics You Need to KnowWhen you start learning JavaScript, one of the most important concepts to understand is operators. Operators are symbols that tell JavaScript to perform a specific action on values. These values are c00
SKSintu Kinsintu.hashnode.dev·Mar 14 · 4 min readThe Magic of this, call(), apply(), and bind() in JavaScriptIn the previous article, we talked about objects in JavaScript and how they help us organize data using key–value pairs. But once you start writing functions inside objects, you’ll quickly run into a 00
SKSintu Kinsintu.hashnode.dev·Mar 14 · 3 min readFunction Declaration vs Function Expression in JavaScriptFunctions are one of the most important parts of JavaScript. A function is simply a reusable block of code that performs a specific task. Instead of writing the same code again and again, we can place00
SKSintu Kinsintu.hashnode.dev·Mar 14 · 3 min readJavaScript Arrays 101 – A Simple Guide for BeginnersWhen we start learning programming, we often store information in variables. For example: let fruit1 = "Apple"; let fruit2 = "Banana"; let fruit3 = "Mango"; This works, but imagine if you had 20 frui00
SKSintu Kinsintu.hashnode.dev·Mar 14 · 3 min readUnderstanding Object-Oriented Programming in JavaScriptObject-Oriented Programming (OOP) is a programming style that helps developers organize code in a clean and reusable way. Instead of writing everything as separate functions and variables, OOP groups 00