RCRushikesh Chouguleinrushikeshchougule.hashnode.dev·Nov 26, 2022 · 4 min readWeb Performance & How to improve it?Introduction Web performance is all about loading the websites fast or loading them in a way it seems fast to the end user. Web performance doesn't only mean initial page load it consists of page load, interactivity & load after interactive activity....01A
RCRushikesh Chouguleinrushikeshchougule.hashnode.dev·May 13, 2022 · 2 min readuseEffect() in ReactLike useState which we have discussed in a previous blog useEffect is another react hook which makes functional react development easier for us. The useEffect handles side effects caused by mounting, unmounting, updating & changing states in react do...00
RCRushikesh Chouguleinrushikeshchougule.hashnode.dev·May 11, 2022 · 2 min readuseState() in ReactJSUseState can be considered as the most important & common used react hook. It allows us to change state of variables in react functional components. Usestate was introduced around 2018 with all other hooks to make react development easy & shift from ...00
RCRushikesh Chouguleinrushikeshchougule.hashnode.dev·Mar 31, 2022 · 4 min readEverything You Need to Know about CSS SelectorsCSS selectors are used to find HTML elements & style them. CSS selectors are of five types. Simple Selectors Combinator selectors Pseudo-class selectors Pseudo-elements selectors Attribute selectors Let us take look at them one by one. Simple Selec...02TM
RCRushikesh Chouguleinrushikeshchougule.hashnode.dev·Mar 28, 2022 · 2 min readJavaScript Reduce method.Reduce is a higher-order JavaScript function which executes reducer method provided to it on an array & unlike map or filter function it returns single value & not an array. Reduce takes the reducer function iterates over the array & performs reducer...00