Javascript/Reactjs
17 articles
What is finally method and finally block in Javascript?
The word finally in Javascript is used in two contexts mainly; finally method with Promises and finally{} block with try-catch. People intermittently …
Avoid JavaScript Template Literals for Building URLs with Query Params
Template literals are literals delimited with backtick (`) characters, allowing for multi-line strings, string interpolation with embedded …
Deep dive into Object.freeze() in Javascript
According to MDN, the Object.freeze() static method freezes an object. Freezing an object prevents extensions and makes existing properties …
The Complete MacBook Setup Guide for Web Development
Setting up your development environment correctly is crucial for productivity and efficiency in web development. This comprehensive guide will walk …
Unlock the Power of ES6: Streamline JavaScript with Destructuring
What is destructuring assignment? The destructuring assignment syntax is a JavaScript expression that makes it possible to unpack values from arrays, …
Build a Scrollable Image Grid in ReactJS Using MaterialUI: Easy Guide
A simple example of a scrollable image grid using Material UI in ReactJS. We had a requirement for a scrollable image grid which will load images …
Love thy fellow programmer as thyself: Setup ESLint Prettier
This is a short guide to configure VS Code for a consistent and reusable development set-up. ESLint Setup ESLint is an open source JavaScript linting …