SSShubham Shuklainshubh151.hashnode.dev·Dec 21, 2023 · 1 min readHooks at a GlanceHooks are functions that let you “hook into” React state and lifecycle features from function components. Hooks don’t work inside classes — they let you use React without classes. (We don’t recommend rewriting your existing components overnight but y...00
SSShubham Shuklainshubh151.hashnode.dev·Dec 20, 2023 · 1 min readHoistingJavaScript Hoisting refers to the process whereby the interpreter appears to move the declaration of functions, variables, classes, or imports to the top of their scope, prior to execution of the code. Hoisting is not a term normatively defined in th...00
SSShubham Shuklainshubh151.hashnode.dev·Dec 19, 2023 · 1 min readLexical scopeLexical scope is the ability for a function scope to access variables from the parent scope. We call the child function to be lexically bound by that of the parent function.00
SSShubham Shuklainshubh151.hashnode.dev·Dec 18, 2023 · 1 min readDifference between context api and redux toolkit.Context API Handles state changes on a component level. It's a dependency injection mechanism that makes data available through the component tree without being manually passed. Context API updates can happen frequently. Redux Takes a centralize...00
SSShubham Shuklainshubh151.hashnode.dev·Dec 17, 2023 · 1 min readWhat is spring MVCA Spring MVC is a Java framework which is used to build web applications. It follows the Model-View-Controller design pattern.00