RHrajashree hungundinpromises-with-raj.hashnode.dev00Node.js ArchitectureMar 8 · 4 min read · Introduction Node.js architecture explains how Node.js works internally to execute JavaScript and handle many requests efficiently. Node.js is built on a single-threaded, event-driven, non-blocking arJoin discussion
RHrajashree hungundinpromises-with-raj.hashnode.dev00JavaScript Operators: The Basics You Need to KnowMar 7 · 6 min read · When we start learning JavaScript, one of the most important things we come across is operators. But before we talk about JavaScript, let’s start with something very simple that we all already know baJoin discussion
RHrajashree hungundinpromises-with-raj.hashnode.dev00Understanding Objects in JavaScriptMar 6 · 6 min read · What are Objects in JavaScript? In JavaScript, an object is a data structure that is used to store multiple values in a single variable. These values are stored as key–value pairs. Key (property): theJoin discussion
RHrajashree hungundinpromises-with-raj.hashnode.dev00Control Flow in JavaScript : If, Else, and Switch Explained Mar 5 · 4 min read · Think about deciding whether to carry an umbrella before going outside. Logic: If it is raining, take an umbrella If it is not raining, do not take an umbrella This is exactly how control flow worJoin discussion
RHrajashree hungundinpromises-with-raj.hashnode.dev00Function Declaration vs Function Expression Mar 4 · 4 min read · Function is a reusable set of instructions that runs when it is called. It performs a specific task. Instead of writing the same code again and again, we write it once and call it whenever needed. WhyJoin discussion