genzcoder.hashnode.devHow 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 ...Jul 28, 2024路3 min read
genzcoder.hashnode.devUnderstanding 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...Jul 21, 2024路3 min read
genzcoder.hashnode.devTech 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...Jul 20, 2024路3 min read
arsaluddin.hashnode.devJavaScript 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...Jul 11, 2023路4 min read
arsaluddin.hashnode.devJavaScript 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 ...Apr 15, 2023路3 min read