RSRaj Singhinnodejsarchitectureknowledge.hashnode.dev00Node.js Internals – Summary11h ago · 3 min read · 1. Single Thread and Event Loop JavaScript in Node.js runs on a single main thread, but Node.js can still handle many tasks at the same time using the Event Loop and asynchronous operations. The eventJoin discussion
APAyush Pandainundclbndapl.hashnode.dev00Understanding this, call(), bind(), apply()17h ago · 3 min read · In JavaScript, the keyword this is very important but often confusing for beginners. It helps us understand which object is calling a function. In this article, we will learn: What this means in JavaJoin discussion
MSManpreet Singhinmanpreet006.hashnode.dev10Node.js Internals & Architecture Explained18h ago · 7 min read · When I first started learning Node.js, one thing confused me a lot: if JavaScript runs on a single thread, how does Node.js handle many tasks at the same time? While exploring this question, I discoveJoin discussion
AGArnab Ghoshalinunderstandingobject-orientedprogramminginjavascript26.hashnode.dev00Understanding Object-Oriented Programming in JavaScript12h ago · 3 min read · What is Object-Oriented Programming (OOP)? Object-Oriented Programming (OOP) is a programming approach where we organize code around objects instead of just functions and logic. In OOP, we group data Join discussion
JMJanardan Mondalinjanardanm.hashnode.dev00The Magic of this, call(), apply(), and bind() in JavaScript17h ago · 4 min read · Intro JavaScript functions are powerful, but one concept that often confuses beginners is this. Understanding how this works — and how methods like call(), apply(), and bind() control it — is an imporJoin discussion
PKPratham Kumarinwithprathamkumar.hashnode.dev00How Node.js Works Internally (Simple Explanation) 17h ago · 5 min read · When I first started learning Node.js, I could easily run JavaScript files and create servers. But one question always confused me: “How does Node.js handle thousands of requests at the same time if JJoin discussion
AGArnab Ghoshalinjavascriptoperators26.hashnode.dev00JavaScript Operators12h ago · 4 min read · JavaScript Operators 1. What Are Operators? 🤔 An operator is a symbol that tells the program to perform an operation on values. Example: let result = 5 + 3; Here: 5 and 3 → operands + → operator TJoin discussion
AGArnab Ghoshalinunderstandingthiscallapplyandbindinjavascript.hashnode.dev00Understanding this, call(), apply(), and bind() in JavaScript12h ago · 4 min read · What this Means in JavaScript Think of this as the object that is calling the function. In simple words: this = the caller of the function Example: const person = { name: "Rahul", greet: function Join discussion
AGArnab Ghoshalinjavascriptfunctionsfunctiondeclarationvsfunctionexpression.hashnode.dev00JavaScript Functions: Function Declaration vs Function Expression12h ago · 4 min read · What Are Functions? A function is a reusable block of code that performs a specific task. Instead of writing the same code multiple times, you can place it inside a function and call it whenever you nJoin discussion
PPriyanshuinjsblogs-by-ps.hashnode.dev00Understanding Object-Oriented Programming in JavaScript16h ago · 5 min read · When people start learning JavaScript, one concept that appears everywhere is objects. Almost everything in JavaScript revolves around objects, there is a saying that "everything in javascript is an oJoin discussion