APAvinash Powarinnewcohortblog2026.hashnode.dev00Node.js Architecture Explained4d ago · 4 min read · When we start learning Node.js, many people say: "Node.js is fast because of V8 and libuv." But beginners often think: What is V8 Engine?What is libuv?What are Node.js bindings? Today we will undersJoin discussion
APAvinash Powarinnewcohortblog2026.hashnode.dev00global vs globalThis in JavaScript4d ago · 2 min read · When we learn JavaScript, we often hear the word global.Later, we see another word called globalThis. Many beginners get confused: Are global and globalThis the same?Why does JavaScript have two nameJoin discussion
APAvinash Powarinnewcohortblog2026.hashnode.dev00The Magic of this, call(), apply(), and bind() in JavaScriptMar 3 · 4 min read · “It’s not about the function… it’s about who is calling the function.” If you understand this one line…You understand this in JavaScript. Let’s learn it in a fun way A Small Movie Story: “Who Called Join discussion
APAvinash Powarinnewcohortblog2026.hashnode.dev00Understanding Object-Oriented Programming in JavaScriptMar 2 · 3 min read · Small Story You want to build 100 cars. Will you build each car from zero again and again? Or… Will you create one blueprint, and then make many cars from it? Of course, you will create one blueprint.Join discussion
APAvinash Powarinnewcohortblog2026.hashnode.dev00Understanding Objects in JavaScriptMar 1 · 4 min read · Imagine this… You are building a Student Management App for a college.You need to store information about a student: Name Age Course City Now think If you store data like this: let name = "RahulJoin discussion