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·61 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...DiscussJavaScript
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·29 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·38 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
Sandeep Rajusandeepraju.hashnode.dev·Mar 7, 2024A toast to Javascript PrototypeHello Dev! In this article, we're going to learn a fascinating aspect of JavaScript called the "Prototype Chain." It's like a family tree, but for objects in JavaScript. Let's learn this concept with some simple examples first. Prototype Basics: Eve...DiscussJavaScript
Emmanuel Edemmmnldm.hashnode.dev·Mar 4, 2024Simplifying the ! [NOT] Operator in JavascriptIntroduction The concept of a logical negation operator (for the purpose of this article let's call it NOT operator) was tricky for me to understand when I first encountered it in practical code, and it wasn't just understanding what it could do but ...Discuss·3 likes·65 readsjavascript fundamentals
Ricardo Rocha // 👨💻bittonic.hashnode.dev·Jan 22, 2024👨🏫 Mastering JavaScript LoopsAlright, buckle up 🏎️ ! Let's talk about JavaScript loops – those trusty tools that let you do stuff repeatedly without losing your sanity. It's like having a magic wand for repetitive tasks in your code. 💥 The OG - for Loop The classic, the OG – t...Discuss·10 likes·32 readsJavaScript