KCKanchan Chaudharyinkanchan7c.hashnode.dev·Mar 20, 2024 · 2 min readHow does React updates virtual DOM?React relies on a process called reconciliation to update the virtual DOM and subsequently the real DOM. At the heart of reconciliation is a diffing algorithm that efficiently identifies the minimal changes required. Here's a deeper dive into React's...00
KCKanchan Chaudharyinkanchan7c.hashnode.dev·Mar 20, 2024 · 2 min readCreate your own React Elements in Vanilla JSReact is a popular JavaScript library used to create Single Page Applications(SPA). While react does many things under the hood to a SPA, you can also make a react functionality yourself in plain JavaScript. React injects all the html code into a sin...00