thetechwiz.hashnode.devHow javaScript code is Executed 🚀How JavaScript code is executed behind the scenes. Before going to deep dive into a concept First, understand the JAVASCRIPT ENGINE JavaScript Engine: A JavaScript engine is simply a computer program that receives JavaScript source code and compiles ...Sep 5, 2023·3 min read
thetechwiz.hashnode.devMap() ,Filter() and Reduce() Function 🚀Map, filter, and reduce are three of the most useful and powerful high-order array methods Map() The map() method is used for creating a new array from an existing one, applying a function to each one of the elements of the first array. the map funct...Aug 4, 2023·2 min read
thetechwiz.hashnode.devControlled form vs uncontrolled form in React.js 📜🖊️Which way is better to handle the form Controlled or Uncontrolled? when building the forms in React, developers have two options to handle the form either the controlled approach or the uncontrolled approach. Understanding the difference between thes...Jul 13, 2023·3 min read
thetechwiz.hashnode.devuseEffect Hooks in React-js 🚀Now, Today we will see what is useEffect and what is the use of useEffect in react-js. so, The Effect Hook lets you perform side effects in function components. now, understand the term side effects. Side Effects are anything that affects something ...Jul 12, 2023·4 min read
thetechwiz.hashnode.devuse State Hooks in ReactIn React, hooks are functions that allow you to use state and other React features in functional components. They were introduced in React version 16.8 as a way to write reusable and stateful logic without using class components. There are several bu...Jul 11, 2023·3 min read