AVAbhinav Vpinabhinavvp.hashnode.dev·Dec 30, 2022 · 3 min readYet another 4 JavaScript tips for shorter codeSeems like JavaScript never ceases to surprise me, perhaps that would explain why I’m writing another blog on JavaScript tips, and I honestly don't see this blog series ending shortly. This will be the continuation of my previous two blogs on the sam...00
AVAbhinav Vpinabhinavvp.hashnode.dev·Apr 9, 2022 · 5 min readBehold, React 18 !A new version of React was released on the 29th of March this year. The latest version, React 18, includes some out-of-the-box improvements, including concurrent rending, new APIs, and much more. In this article, we shall go through some of the new f...00
AVAbhinav Vpinabhinavvp.hashnode.dev·Feb 27, 2022 · 2 min readI made a portfolio website using only HTML without any Styles. This is what I learnedI made a portfolio website using only HTML without any styles. The intention was to push the limits of pure HTML and see its capabilities, and it was worth it. These are some of the things I’ve learned during the process. 1.<body> tag has some...00
AVAbhinav Vpinabhinavvp.hashnode.dev·Feb 12, 2022 · 3 min readWhy You Should Use Error Boundaries in ReactReact Error Boundaries were introduced in React version 16 to generate a fallback UI in case a component were to crash. This was to ensure that a JavaScript error in a single component should not crash the whole app.Consider the following React appli...00
AVAbhinav Vpinabhinavvp.hashnode.dev·Dec 23, 2021 · 3 min readAnother 4 JavaScript tips for shorter codeThis is a continuation to my earlier article : 4 JavaScript tips for shorter code 1. Replace Switch or If-Else with key value pairs The switch statement and if-else statement evaluates an expression and executes statements associated with that case....00