Frontend engineer with love for design
Nothing here yet.
May 6, 2024 · 2 min read · Check my last post on next.js if you are new There are 4 important things in next.js that makes it special , in this post i will give both analogy and it's real use 1) SSR 2) SSG 3) ISR / ISG 4) CSR Now what are these 1. SSR (Server Side Rendering) A...
Join discussionMay 4, 2024 · 4 min read · this is how i am learning next.js when i first heard about next.js two main things popped up in front of me one is server side rendering and other static site generation , in this particular i will explain it so clear that even after 10 years you'll ...
Join discussion
Apr 30, 2024 · 1 min read · // normal arr.reduce(callbackfn, initialValue); // callback function with parameters // initialValue maybe 0 or whatever you can give arr.reduce((previousValue, currentValue, currentIndex, array) => { const nextValue = previousValue + currentValue; ...
Join discussion