Patrick Zoclizidev.hashnode.dev·12 hours agoThe Virtual DOM: The Key Concept of Responsive Interfaces in ReactJSWhat is the Virtual DOM? Well, it’s a representation of the actual DOM, stored and synchronized with it by React through its ReactDOM library. In case you briefly know what the DOM is, or not, imagine that when a web page (web document) loads in a br...DiscussDOM
Gujarati Coderreactflux.hashnode.dev·Sep 26, 2023React Router vs. React Router DOMRouting is an essential technique for navigation among pages on a website based on user requests and actions. A separate library named React Router enables routing in React applications and allows defining multiple routes in an application. But wheth...DiscussReact
Shivansh Srivastavacreativedevcs.hashnode.dev·Sep 25, 2023Dom & Dom ManipulationLearning Dom with javascript 🌟 **Demystifying the DOM: A Guide to DOM Manipulation** 📖 **Introduction** - Introduce the concept of the DOM and its significance in web development. 🌐 **Understanding the DOM** - Define the DOM and its role in repres...DiscussJavaScript
Parthib Dattaparthibdutta02.hashnode.dev·Sep 22, 2023Everything on FrontendWell, everyone thinks that web frontend is just HTML, CSS & Javascript, but it is more than that. First, let’s talk about how web looked like before Browsers The pre-Web Internet was an almost entirely text-based world. There were ASCII-based end-use...Discuss·8 likesFrontend Development
Tuhin Bartuhinbar.hashnode.dev·Sep 7, 2023The Intersection Observer APII see very less people talk about core JavaScript APIs. Well, I decided to go with those things only. Although several blogs are available, I wanted to put out everything I know about the intersection observer API in my own words. So here it is. What...Discuss·1 like·34 readsJavaScript
Anant Guptaanantguptablogs.hashnode.dev·Sep 6, 2023Anonymous Function in JavaScriptIt is a function that does not have any name associated with it. Normally we use the function keyword before the function name to define a function in JavaScript. However, in anonymous functions in JavaScript, we use only the function keyword withou...Discussfunctions in js
Kushagra Sharmakushagrablog.hashnode.dev·Sep 6, 2023"DOM : Adding JavaScript to Web Pages1) Introduction Till now I've been learning about Javascript and using it inside the Chrome Developer tools console. Now that was the purest form of Javascript as we saw the code as it is and saw what it does. But there is no use in learning about it...Discussjs
Gunpriya Sarpatepriyasarpate.hashnode.dev·Sep 2, 2023JavaScript Events part-7"Welcome to today's lesson on JavaScript event handlers! In the world of web development, making web pages interactive is key, and that's where event handlers come into play. Imagine a scenario where you want something to happen when a user clicks a ...Discuss·1 like·31 readsJavaScript
Gunpriya Sarpatepriyasarpate.hashnode.dev·Sep 1, 2023What is DOM? Part-6In this article, we will discuss Document Object Model(DOM) along with its properties and methods used to manipulate Documents, & understand their implementation through the examples. The Document Object Model (DOM) is a programming interface for HTM...Discuss·1 likejsdom
Vedansh Mehravedanshmehra.hashnode.dev·Aug 30, 2023Auto-batching In React 18React 17 and prior versions of React use a technique called "Batching" to group multiple state updates into one to prevent the components from re-rendering multiple times on every state change. This is used for optimization purposes and especially fo...Discuss·1 like·29 readsReact