Ayan Mehtafromhimalayas.hashnode.dev·Nov 16, 2024Mastering Async JavaScript: From Callbacks to Promises and Beyond 🚀TOPICS Callbacks Promises Async/Await .then/.catch finally Why do we need promises in Javascript : let's understand this first by some basic topics Callbacks: to understand promises we first need to understand callbacks. callbacks are function...DiscussAsync Programming Tips
Stanley Owarietaday3-of-30days-js-blog.hashnode.dev·Nov 10, 2024Understanding Map and Set Objects in JavaScriptHave you ever felt overwhelmed by managing complex data structures in JavaScript? While arrays and objects are useful, they may not always be the most efficient solutions for your coding challenges. This is where Map and Set objects come into play—tw...DiscussMaps and Sets
Stanley Owarietaday3-of-30days-js-blog.hashnode.dev·Nov 4, 2024Day 15: JavaScript Modules - Mastering Code OrganizationAs our JavaScript projects grow, organizing code into modular pieces becomes essential. JavaScript Modules allow us to separate code into logical, reusable files, making our projects more maintainable and scalable. This post will explore the basics o...Discuss·10 likesJavaScript Import/Export
Darshit Anjariadarshitanjaria.hashnode.dev·Oct 25, 2024Mastering Memory Management in JavaScript: A Deep Dive into Garbage CollectionIntroduction In any programming language, managing memory efficiently is crucial to building high-performance applications. JavaScript, despite being a high-level language, handles memory management for you through a process called Garbage Collection...Discuss·37 readsJavaScript
John Davidkaplixblog.hashnode.dev·Sep 9, 2024Building Interactive Web Apps with JavaScript: A Step-by-Step GuideJavaScript: The Language of the Web JavaScript (often abbreviated as JS) is a high-level, dynamic programming language that reigns supreme in the world of web development. It's responsible for all the cool features you see on modern websites – from i...DiscussJavaScript performance optimization
Nirdesh pokharelblog.nirdeshpokhrel.com.np·May 31, 2024The Mystery of Leading Zeros in JavaScript: A Fun DiscoveryOne day, our intern, Mr. Shailendra, whom we call Lala Ji, found something strange. While working on a JavaScript project, he noticed that numbers with leading zeros were acting weird. This made me curious, so I decided to look into it more. What I f...Discuss·1 like·165 readsJavaScript Leading Zeros
Bhavesh Jadhavbhaveshjadhav.hashnode.dev·May 26, 2024JavaScript Concepts: Hoisting, this Keyword, and Undefined vs. Not DefinedJavaScript is a versatile and powerful language, but it comes with some concepts that can be tricky to understand. In this blog, we’ll explore three important concepts: hoisting, the this keyword, and the difference between undefined and not defined....Discuss·10 likesJavascript BasicsJavaScript
Yuvraj Singhyuvrajsingh.hashnode.dev·Mar 18, 2024Demystifying the "Cannot Read Properties of Undefined/Null" Error in JavaScriptIntroduction JavaScript, as a versatile and dynamic language, empowers developers to create powerful web applications. However, even seasoned developers encounter the infamous "Cannot Read Properties of Undefined/Null" error. In this blog post, we'll...Discuss·10 likesObject wrappers
Shubhajit Paulshubhajit99.hashnode.dev·Dec 27, 2023Writing Clean and Readable Code in JavaScript: A Comprehensive Guide to Meaningful Variable and Function NamingIntroduction In the realm of JavaScript programming, the significance of thoughtful variable and function naming often takes a backseat. In this guide, we'll delve into the importance of crafting meaningful names and provide practical tips to elevate...DiscussJavaScript Coding Practices