2 followers
Frontend Developer, who loves React and its Ecosystem.
In this post, we will see how to create dynamic sitemaps in Next.js. What Is a Sitemap? A sitemap is an XML file where you provide information about...
To render HTML elements from JSON to JSX we need to use dangerouslySetInnerHTML which is React’s replacement for using innerHTML in the browser DOM { ...
In this post, we'll see how to remove duplicates from an array of objects. Let's suppose we have an array of products. Each product is an object with...
In this post, we will see how to replicate the same behavior we have in componentDidUpdate() using react hooks. What is...
In this post, we'll see how to remove properties from a JavaScript Object using the delete operator and the object destructuring. First things first....