JVJanardhan Vermainarray-javascript.hashnode.devArray Methods You Must KnowArrays, most prominently used data type in every available language be it C++, Python or JS. Also every language has some inbuilt methods for arrays, so has JavaScript. Today let's see some of those t2h ago·7 min read
SSSmita Subudhiinsmita-writes-tech.hashnode.devJavaScript Arrays 101 In my previous blog, we learned about objects, which are very useful for storing complex data using key–value pairs. But sometimes we need to store multiple values of the same type. In such cases, usi15h ago·12 min read
AHAbhishek Harshinjs-2026.hashnode.devThe magic of this, call(), bind() and apply() in javascriptIntroduction to this keyword This keyword is the reference to the object that is in current context of execution. Its value is determined dynamically. Those different values of this are discussed belo2h ago·3 min read
SPSaurabh Prajapatiinblog.thitainfo.comThe Magic of this, call(), apply(), and bind() in JavaScriptBy Saurabh Prajapati | Full-Stack Engineer at IBM India Software Lab Why I Decided to Explore This I'll be honest — for the longest time, this in JavaScript confused the heck out of me. I'd write som4h ago·9 min read
SKShubham Kumarinhelloshubham.hashnode.devUnderstanding Object-Oriented Programming in JavaScript (OOP)Object-Oriented Programming (OOP) helps you model real-world things in code. In JavaScript, OOP makes your programs more organized, reusable, and easier to maintain. This article explains the core ide9h ago·6 min read
TPTejas Prajapatiintejasxdev.hashnode.devUnderstanding Objects in JavaScriptIn this one we'll be diving into a one of the most if not the most important part of the JS. As you might have heard that in JS everything is an object, so we'll understand this object. Let's jump rig1h ago·3 min read
RRadhikaindev-radhika.hashnode.devNodeList v/s HTMLCollection:Introduction : Before understanding NodeList and HTMLCollection let us firstly understand the concept of nodes. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title class="mai14h ago·5 min read
AAAgam arorainagamx.hashnode.devFunction Declaration vs Function Expression in JavaScript (Beginner Friendly Guide)If you’re learning JavaScript, you’ve probably figured out by now that functions are the beating heart of the language. Almost every real-world application uses functions to get things done. But it do8h ago·6 min read
DGDhruv Goradiainjsbeginnertomastery.hashnode.devUnderstanding Variables and Data Types in JavaScriptWhen you start learning JavaScript, one of the first things you’ll come across is variables and data types. These two concepts are the foundation of programming because they help us store and manage iJust now·4 min read
SSSubhasis Samantasingharinjs-blog-subhasis.hashnode.devFunction Declaration vs Function Expression: What’s the Difference?Introduction Functions are reusable blocks of code that perform a task. They let you write a piece of logic once and run it many times. In JavaScript there are two common ways to create functions: fun15m ago·5 min read