Umar Khursheedumarkhursheed.hashnode.dev·Sep 6, 2024Virtual DOM, Fiber and ReconciliationGet ready for some theoretical concepts and bear with me, it will be an interesting session. Nowadays, Virtual Dom is not used that much in React but it does not mean we should not study about it because it is important from an interview perspective....DiscussReact
Abeer Abdul Ahadabeer.hashnode.dev·Sep 6, 2024What is Virtual DOM in React?The Virtual DOM is a fundamental concept in React that significantly enhances the library's performance and efficiency. Understanding the Virtual DOM is crucial for both developing React applications and performing well in React-related interviews. H...Discuss·38 readsReact in Detailvirtual dom
Jay Tillublogs.jaytillu.com·Sep 5, 2024Difference Between innerText, textContent, and innerHTMLWhen working with web pages in JavaScript, you often need to get or change the content of elements. There are three main properties you can use: innerText, textContent, and innerHTML. Each one behaves differently, so let’s look at what they do and ho...DiscussLoving JavascriptJavaScript
Michael Jamesmichaelrjamesjr.hashnode.dev·Sep 3, 2024Harnessing TypeScript to Elevate JavaScript: Crafting Robust Web ApplicationsThe Rise of JavaScript: Meeting the Needs of an Evolving Web TL;DR: JavaScript has evolved from simple web page operations to building dynamic applications, but its weak typing can lead to errors. TypeScript enhances JavaScript by adding strong typin...DiscussA Study of How TypeScript Addresses JavaScript's LimitationsTypeScript
Vitthal Korvanvitthal-korvan.hashnode.dev·Sep 3, 2024React JS - Working With FormsWorking with input field in Forms import { useState } from 'react' import './App.css' function App() { const [username, setUsername]=useState("") //default value is empty string function handleUsername(e){ console.log(e.target.value); s...Discuss·5 likesReact-MasteryReact
Sutapa Biswassutto.hashnode.dev·Aug 28, 2024JavaScript DOM Basics ExplainedWhat is DOM? DOM - Document Object Model (Javascript for frontend) Main Jargon in DOM Element Selection Changing HTML Changing CSS Event Listener Element Selection To select Elements in JS, we use document.querySelector(" ") var a = docu...DiscussJavaScript
Yash Thakuryashthakur.hashnode.dev·Aug 26, 2024How Your Browser Renders the Screen: A High-Level UnderstandingHey guys👋🏽, Have you ever wondered how a web page transforms from lines of code into the vibrant, interactive experience you see on your screen? Understanding how browsers render web pages is more than just a technical curiosity—it’s a crucial aspe...Discuss·9 likes·49 readsJavaScript
Sai Aneeshlhcee3.hashnode.dev·Aug 25, 2024React: Zero to Hero 4Mastering Routing with React Router Routing is a fundamental aspect of modern web applications. It enables navigation between different views or pages within an application without requiring a full page reload. For React applications, React Router is...DiscussReact
Rami Mohappydev.blog·Aug 21, 2024Mastering Front-End Development - Stage 3: JavaScript Basics - Adding InteractivityNow that we have learned the fundamentals of HTML and basic CSS, we will move on to the next crucial step in web development: learning JavaScript. JavaScript is a programming language that allows us to create dynamic and interactive web pages. It ena...DiscussMastering Front-End DevelopmentDOM
Abhijeet Karmakarabhijeet15.hashnode.dev·Aug 16, 2024Document Object Model (DOM)What is DOM? The Document Object Model (DOM) is the data representation of the objects that comprise the structure and content of a document on the web. It represents the page so that programs can change the document structure, style, and content. Th...Discussjs dom