Maneet LodhaIntroduction to TypeScript and its typesTypeScript is basically a powerful compiler that converts the Typescript code into JavaScript. TypeScript code is Javascript with types…May 16, 2021May 16, 2021
Maneet LodhaHow JavaScript code is executed?Every time a javascript program is executed, an execution context is created. The execution context against executing code in 2 phases…Dec 29, 2020Dec 29, 2020
Maneet LodhaHow useEffect hook works in React?In my last blog post, I talked about useReducer hook in react. Here, I want to talk about useEffect which is one of the most used hook in…Dec 2, 2020Dec 2, 2020
Maneet LodhaAction, Dispatch, and Usereducer() in ReactRecently I learned about these react hook useReducer and its usage by designing a Todo app in React JS. This app didn’t have local storage…Nov 30, 2020Nov 30, 2020
Maneet LodhaContext API in React JSContext API is used to reduce the drilling of data through the component tree by not passing it through every level of the tree and…Nov 27, 2020Nov 27, 2020