CPChirag Purohitinchiragpurohit.hashnode.dev·3h ago · 2 min readHow Node.js Handles Multiple Requests with a Single ThreadThe Node.js is not actually the Single threaded meanwhile it is designed to as a single-threaded runtime to handle multiple request's efficiently using an event driven ,non-blocking. But actually Node00
CPChirag Purohitinchiragpurohit.hashnode.dev·1d ago · 2 min readBlocking vs Non-Blocking Code in Node.jsWhat blocking code means :- Blocking code is the part of the code which waits and pauses the of upcoming code until the ongoing task is completed . Entire thread is blocked It also known as synchronou00
CPChirag Purohitinchiragpurohit.hashnode.dev·1d ago · 3 min readControl Flow in JavaScript: If, Else, and Switch ExplainedWhat control flow means in programming :- Control flow is the exact order of the code in which your programme will proceed according to individual statement instruction or function call . because the 00
CPChirag Purohitinchiragpurohit.hashnode.dev·Jul 4 · 4 min readSynchronous vs Asynchronous JavaScriptLet's start today topic first I explain you about the Synchronous tasks :- Synchronous tasks mean tasks that are done in any sequence and linear manner for Example you are making chai so you will do a00
CPChirag Purohitinchiragpurohit.hashnode.dev·Jun 28 · 2 min readArrow Functions in JavaScript: A Simpler Way to Write FunctionsLet's I introduce to a another style of writing functions in JavaScript which is a simpler way to write function with compact alternative to traditional function have some advantages and limitation ov00