PBPrateek Budhirajainblog.prateekbudhiraja.inยทNov 9, 2023 ยท 2 min readExplain how Promise.all() works.Promise.all() is a JavaScript method that takes an array of promises as input and returns a single promise that resolves when all of the input promises have resolved, or rejects if any of the input promises are rejected. It is useful for aggregating ...00
PBPrateek Budhirajainblog.prateekbudhiraja.inยทSep 14, 2022 ยท 6 min readIn-Depth Guide to JavaScript ObjectsObjects are said to be the backbone, the skeleton of javascript. And almost everything in javascript is an object! Which makes learning and mastering objects absolute necessary! In this blog, we'll try to understand what an object is, and why we even...01R
PBPrateek Budhirajainblog.prateekbudhiraja.inยทSep 11, 2022 ยท 6 min readJS Interview CheatSheetโ Scope ๐ฅ Scope defines the area, where functions, variables and other things are available or can be accessed. In layman's terms, scope means where to look for things, what things I can use and what I cannot! Let's take an example, here we are defi...00
PBPrateek Budhirajainblog.prateekbudhiraja.inยทAug 27, 2022 ยท 6 min readArrays in JS ๐Arrays, as you must know from other programming languages, are used to store a collection of "things", and I am loosely saying "things" here. But here in JavaScript, arrays are a little different and they come with many valuable functions, and in thi...00
PBPrateek Budhirajainblog.prateekbudhiraja.inยทAug 21, 2022 ยท 10 min readGet Started with Tailwind ๐What is Tailwind? ๐ค The easiest and the most unhelpful definition would be, that Tailwind is a CSS framework. There you have it, we can now wrap up this blog, thank you for rea... Kidding ;) You can think of Tailwind CSS as a collection of predefine...00