Functions And Arrow Functions
What are functions? If we want to put it in simple words, they are one of the main building blocks of JavaScript. They are used to organize your code into smal...
What are functions? If we want to put it in simple words, they are one of the main building blocks of JavaScript. They are used to organize your code into smal...
Variables in JavaScript let Used for values that can change later. javascript let age = 20; age = 21; const Used when the value should not be changed. javascri...
!Cover image for Standardizing Express.js Error Handling with One Libraryhttps://media2.dev.to/dynamic/image/width=1000,height=420,fit=cover,gravity=auto,format...
Module Resolution The resolver starts at the entry point e.g., index.js and determines the exact file location for each import. For relative paths it joins the...
Over 90% of React Native core modules now support the New Architecture as of late 2024. Yet many enterprise teams still run apps on the legacy bridge system, wa...
Introduction Hi, I’m Caspian Grey. I’m starting this blog for a simple reason: I want to learn in public. For a long time I tried learning JavaScript, web deve...
How to Send Email with JavaScript As I mentioned earlier, you can send emails in JavaScript through the client side as well as a backend server. I'll cover bot...
When working with JavaScript, understanding the difference between for...of and for...in loops is crucial for writing clean, efficient code. While they might lo...
Problem Statement Find the elements that exist in both arrays, given two sorted arrays. Approach Because the arrays are sorted, we can walk through them simult...
🎯 The Problem The Context - Portfolio site: Personal brand, blog, project showcase - UI library: 25+ reusable React components - State requirements: Theme, na...
!Forem Logohttps://media2.dev.to/dynamic/image/width=65,height=,fit=scale-down,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%...
Background When I built the first version of my Harry Potter–themed website, I thought I had created something special. After stepping away for a while and rev...