Best Way to Understand the Context in React Functional Component
React Context Functional Component In React we cannot directly pass data from a parent component to a child component using props, we can only pass according to the order of…
React Context Functional Component In React we cannot directly pass data from a parent component to a child component using props, we can only pass according to the order of…
Props Drilling in React JS When you pass the data from the parent component to the child component using props, if the other child components also need that data, we…
React Map Array to Components When you are developing an app in React you often need to store data in an array of objects. You can display or create all…
No Repeat Background Image in HTML In this article, we will see how to set a no-repeat background image in HTML. How to create a not-repeating background image If you…
Split Numbers Javascript You need to split numbers when you want to perform specific operations or manipulate the individual digits or parts of a number. There are two simple ways…
How to Clear Input Field After Submit After users submit an input, they need to clear the current input field to give another input, so it impacts the user experience.…
Map Size in JavaScript In this article, we'll see how to find the size of a map in javascript. What is a map? It is an object, we can store…
Draw a Circle in JavaScript We can easily draw a circle using CSS but wondering if you can draw it in javascript? Let's see how to draw a circle in…
Javascript Add Seconds to Date You can easily add seconds to the current date in Javascript by using setSeconds() and getSeconds() methods. You can use the getSeconds() method inside the…
jQuery Select Option by Text Usually, we select the options of the HTML dropdown box using value. But have you ever thought about selecting an option through the text of…