Shivam Jhatechtaleswithshivam.hashnode.dev·Oct 10, 2023Lists and Keys in ReactJS.One of the most common tasks in web development is to render a list of data items on the screen. For example, you might want to display a list of products, a list of comments, a list of tasks, etc. In this blog post, we will learn how to use lists an...10 likesreact list
Varun Khalatevarunkhalate.hashnode.dev·Jun 15, 2023What is the importance of keys in React?React philosophy Lets briefly understand how React works to set up some context on component rendering. React uses the process of reconciliation to update the browser DOM which contributes to its efficient rendering and updating of the UI. To carr...10 likes·53 readsReact
Deniel Horvaticdevparadise.hashnode.dev·Feb 22, 2023How does React's virtual DOM work?Virtual DOM is one of the core concepts of React and we will explain how the virtual DOM works and why it's a critical aspect of React. What is the Virtual DOM? The virtual DOM is an in-memory representation of the actual DOM (Document Object Model),...1 like·52 readsReact