SKSiddharth Kumar Gopeinimsidkg.hashnode.dev·Apr 23, 2023 · 5 min readDiving into more React HooksWhat are Side-Effects? Before we get into the hooks we need to recall what are Side-Effects. Suppose you have a pure function that takes two integers as an argument and returns the sum of those two numbers and the function also has console.log well. ...00
SKSiddharth Kumar Gopeinimsidkg.hashnode.dev·Apr 20, 2023 · 3 min readWhat are React Hooks - An Introduction to React HooksFundamentals of React Hooks In my previous blog about React Components we discussed that Components are plain old JavaScript functions. The speciality of JS functions is that in a function we can compose many other functions in it. Similarly, in the ...00
SKSiddharth Kumar Gopeinimsidkg.hashnode.dev·Apr 18, 2023 · 1 min readUnderstanding React Components - What are States - What are Props - State vs. PropsWhat are the components and brief understanding of State and Props? Components in React consist of mainly five things to bear in mind: A component is a plain old Javascript function. A component must return "something". The "something" is JSX. A ...00
SKSiddharth Kumar Gopeinimsidkg.hashnode.dev·Apr 18, 2023 · 3 min readDeep Understanding of JSXBasics of JSX and how to use it? What does JSX do? A component is react is rendered with both computational part (like JavaScript) as well as presentational part(like HTML). JSX is that syntax that helps us to achieve our objectives but the browser d...02IA
SKSiddharth Kumar Gopeinimsidkg.hashnode.dev·Feb 20, 2023 · 2 min readHow to effictively learn React Js.Take the first step! Although the method I will use to discuss this in this blog may seem slow, it is the most efficient one. I used this approach and had amazing success in terms of memorizing the ideas. Get your basics correct What do I mean by get...00