Bun is a Javascript runtime, compiler, transpiler, bundler, test runner, and standard library. That’s quite an all-in-one tool. If you want a TLDR, bun calls itself a “drop-in replacement for Node.js”. It’s an all-in-one framework that replaces: Node.js npm tsc Jest/Vitest Babel/Webpack So you can get rid of dependencies, build tools, and .config files and […]

Read More →

In Javascript, Math is a built-in object that has properties and methods for mathematical constants and functions. max() and min() are static methods of Math, you always use it as Math.max(), Math.min() The number arguments that min and max methods can take are zero or more 1 2 Math.max([value1[, value2[, …]]]) Math.min([value1[, value2[, …]]])Math.max([value1[, value2[, […]

Read More →

A checklist is a type of job aid used to reduce failure by compensating for potential limits of human memory and attention. It helps to ensure consistency and completeness in carrying out a task. Checklists are useful for applying methodology. The Front-End Checklist is an exhaustive list of all elements you need to have/test before […]

Read More →

A service worker is a script that your browser runs in the background, separate from a web page, opening the door to features that don’t need a web page or user interaction. Service workers are a technology to aid developers in: creating realistic, reliable offline experiences vastly improving performance when online logically and dynamically caching […]

Read More →