SAShubham Agarwalinshubhamagarwal.hashnode.dev路Apr 15, 2023 路 5 min readReact Learning Path - Day 5 馃殌React Fragment vs <></> React fragment is used when you want to group multiple elements into one root element. To return multiple elements from a React component, you'll need to wrap the element in a root element.We can use <div> also instead of reac...00
SAShubham Agarwalinshubhamagarwal.hashnode.dev路Apr 9, 2023 路 4 min readReact Learning Path - Day 4 馃殌JSX JSX is a syntax extension for JavaScript that lets you write HTML-like markup inside a JavaScript file. It is not a pure javascript function hence if we try to use this syntax directly in console.log as javascript then it will throw an error.Let'...00
SAShubham Agarwalinshubhamagarwal.hashnode.dev路Apr 7, 2023 路 4 min readReact Learning Path - Day 3NPM Most developers would have come across this term at some point in time and they would have got to know it as Node Package Manager(NPM), but do you know NPM official website does not call it the Node Package Manager rather the NPM community gives...00
SAShubham Agarwalinshubhamagarwal.hashnode.dev路Apr 2, 2023 路 2 min readReact Learning Path - Day 2Async vs Defer <script src="" />Usually, we place the script tag at the bottom of the body tag so that HTML parsing is done before executing the script because if the script tag is encountered before then the HTML DOM is built then won't complete th...00
SAShubham Agarwalinshubhamagarwal.hashnode.dev路Mar 26, 2023 路 3 min readReact Learning Path -Day 1What is Emmet? Emmet is a set of plug-ins for text editors that allow for high-speed coding and editing in HTML, XML, XSLT, and other structured code formats via content assist. It is a very useful tool that improves the efficiency of web developers ...01