SDSobhan Dashinsobhandash.hashnode.dev·Feb 27, 2022 · 3 min readThe Secret Life of Context APIBefore getting to know about the awesome feature of Context API we first need to know why we need this hook. Much like useReducer hook, it is an advanced concept of React. Prop Drilling There is a concept called Prop Drilling. When we build any small...00
SDSobhan Dashinsobhandash.hashnode.dev·Feb 26, 2022 · 2 min readWhat the heck is useReducer HookLet's have a look at an advanced hook in the React series. useReducer Hook This is one of the hooks that can be considered as advanced React. We use this hook when we have a more complicated setup as far as states are concerned. It is similar to us...00
SDSobhan Dashinsobhandash.hashnode.dev·Feb 19, 2022 · 4 min readJavaScript Interview Questions 2On the previous iteration of the series I talked about 5 commonly asked questions in JavaScript or JavaScript frameworks and libraries interviews like MEAN, MERN Or VUEjs. In this blog I'll continue to answer a few more questions that I have been ask...00
SDSobhan Dashinsobhandash.hashnode.dev·Feb 16, 2022 · 3 min readReact forms and useRef HookSo, in the last article we got to know about useState and useEffect hooks of react. Let's dive a little deeper this time with learning what are Forms and does useRef hook really work. I have also thrown in a bonus of what is prop drilling. Forms Now,...00
SDSobhan Dashinsobhandash.hashnode.dev·Feb 14, 2022 · 5 min readInterview Questions on JavaScriptIn this part of JavaScript basics, I will be sharing some commonly asked questions on JavaScript interviews. I have personally been asked these a number of times. TOC: What's Arrow Function What is the difference between == and === operators What ...00