AUarsal uddiningenzcoder.hashnode.dev路Jul 28, 2024 路 3 min readHow Node.js Works: An In-Depth GuideNode.js is a powerful and versatile platform that allows developers to build server-side applications using JavaScript. Understanding how Node.js works can help you leverage its full potential for your projects. In this blog, we'll explore the inner ...00
AUarsal uddiningenzcoder.hashnode.dev路Jul 21, 2024 路 3 min readUnderstanding How Different Types of APIs WorkIn today's interconnected world, APIs (Application Programming Interfaces) play a crucial role in enabling communication between software applications. Let's explore how different types of APIs work through visual representations. 1. REST API Explan...00
AUarsal uddiningenzcoder.hashnode.dev路Jul 20, 2024 路 3 min readTech Startups to Watch in 2024As we step into 2024, the tech industry continues to be a hotbed of innovation and disruption. Several startups are making waves with groundbreaking technologies and visionary ideas. Here's a look at some of the most promising tech startups you shoul...00
AUarsal uddininarsaluddin.hashnode.dev路Jul 11, 2023 路 4 min readJavaScript Visualized: Scope (Chain)Let's take a look at the following code: const name = "Lydia" const age = 21 const city = "San Francisco" function getPersonInfo() { const name = "Sarah" const age = 22 return `${name} is ${age} and lives in ${city}` } console.log(getPerson...00
AUarsal uddininarsaluddin.hashnode.dev路Apr 15, 2023 路 3 min readJavaScript Visualized: HoistingHoisting is one of those terms that every JS dev has heard of because you googled your annoying error and ended up on StackOverflow, where this person told you that this error was caused because of hoisting 馃檭 So, what is hoisting? (FYI - scope will ...00