PSPRITHVI SUVARNAinprithvi.hashnode.dev·Dec 12, 2020 · 5 min readReact: Behind The SceneReact is a javascript library used to build user interfaces. But behind the scenes, React does a lot of work that we are unaware of. So let's try to understand how React renders a webpage under the hood. So all of us have worked with the file App.js ...01D
PSPRITHVI SUVARNAinprithvi.hashnode.dev·Dec 4, 2020 · 3 min readIntroduction to DOM (Document Object Model)What is DOM? It is our window to access the contents of the webpage from Javascript. Consider it as an interface between the Webpage and the Javascript file. The script file interacts with the webpage via the DOM. How is it created? When the browser ...00