Stanley Owarietaday3-of-30days-js-blog.hashnode.dev·Oct 30, 2024🚀 Day 11 of #30DaysOfJavaScript: Understanding Promises in JavaScriptWelcome to Day 11! Today, we’re diving into a fundamental concept in JavaScript’s approach to handling asynchronous operations: Promises. If you’ve ever been stumped by complex asynchronous code, understanding promises will be your gateway to more re...Discuss·10 likesJavaScript
Alex Xelaallaboutjs.hashnode.dev·Sep 28, 202402. OperatorsIn JavaScript, operators are used to perform various operations on variables and values. In this article, we will explore the different types of operators in JavaScript, including unary, arithmetic, relational, equality, binary logical, and condition...DiscussUnary Operators
Abeer Abdul Ahadabeer.hashnode.dev·Sep 21, 2024Event Bubbling and Capturing - Learn like you are 5Come on, 'Learn like you're 5' is just a phrase — I'm not telling a toy story here! But I promise, if you read through carefully from start to finish, it'll all make sense. Event bubbling and capturing are two phases of how events propagate (or trave...Discuss·36 readsJavaScriptEvent Capturing And Event Bubbling In JavaScript
Abhishek Sadhwaniabhisheksadhwani.hashnode.dev·Aug 9, 2024The JavaScript Launchpad: Start Your Coding AdventureJavaScript has become a foundational element of contemporary web development. In this article, we'll explore the core principles and capabilities of JavaScript. What is JavaScript? JavaScript is a high-level, interpreted programming language, designe...Discuss·23 likes·65 readsJavaScript
Sriram Bsriram23.hashnode.dev·Aug 4, 2024Mastering Type Coercion in JavaScriptType coercion in JavaScript refers to the conversion of one type to another, either explicitly or implicitly. JavaScript is known for being a loosely typed language (sometimes referred to as 'weakly typed,' though I prefer not to use that term 😊). T...Discuss·34 readsJavaScript
Shivam Kumarshivammishra828.hashnode.dev·Jul 31, 2024Understanding Abstract vs. Strict Equality in JavaScript: Beyond the BasicsIn the realm of JavaScript development, equality comparisons often lead to confusion and misconceptions, especially when it comes to Abstract Equality (==) and Strict Equality (===). Many developers, especially those new to JavaScript, might believe ...Discuss·1 like·40 readsJavaScript
Bhavesh Jadhavbhaveshjadhav.hashnode.dev·May 28, 2024Understanding JavaScript Blocks and ScopeBlock in JavaScript A block, or compound statement, in JavaScript is defined by the curly braces {}. It is used to group multiple statements together. For example: { let a = 10; console.log(a); } Why Do We Need to Group Statements? We group ...Discuss·11 likes·41 reads2Articles1Week
Vinay Chhabrablog.vinaychhabra.com·Apr 12, 2024JavaScript Fun Facts: Discovering the Quirky Side of CodeHey everyone! Ever thought about the fun side of JavaScript? Well, get ready because we’re about to uncover some cool and quirky facts about this awesome coding language! JavaScript isn’t just about writing code; it’s full of surprises and interestin...Discussjavascriptfun
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
Ankit Hadiyaljavascript-before-react.hashnode.dev·Mar 7, 2024JavaScript Fundamentals You Can't Skip Before Learning React.jsThe Role of JavaScript in React.js: When delving into the world of React.js, understanding the pivotal role that JavaScript plays is essential. React.js, a powerful JavaScript library for building user interfaces, leverages the core principles of Jav...DiscussReact.js Basics