DSDhruv Soodinreact-native-mobile.hashnode.dev·May 23 · 2 min readHow Instagram, WhatsApp, Uber & Netflix Would Be Built Today Using Expo RouterTopics to Cover How modern large-scale mobile apps are structured Why architecture matters in React Native applications Folder architecture using Expo Router Feature-based separation in large appl00
DSDhruv Soodinreact-native-mobile.hashnode.dev·May 23 · 2 min readExpo Router vs React Navigation - Which One Should You Use in 2026?Topics to Cover What routing means in mobile applications Why navigation is important in React Native apps Brief history of React Navigation Problems developers faced with traditional navigation s00
DSDhruv Soodincodewithdhruv.hashnode.dev·May 10 · 1 min readJavaScript Operators: The Basics You Need to KnowTopics to Cover What operators are Arithmetic operators (+, -, *, /, %) Comparison operators (==, ===, !=, >, <) Logical operators (&&, ||, !) Assignment operators (=, +=, -=) Suggestions Star00
DSDhruv Soodincodewithdhruv.hashnode.dev·May 10 · 1 min readThe Node.js Event Loop ExplainedTopics to Cover What the event loop is Why Node.js needs an event loop Task queue vs call stack (conceptual only) How async operations are handled Timers vs I/O callbacks (high level) Role of ev00
DSDhruv Soodincodewithdhruv.hashnode.dev·May 10 · 1 min readThe Magic of this, call(), apply(), and bind() in JavaScriptTopics to Cover What this means in JavaScript (simple explanation) this inside normal functions this inside objects What call() does What apply() does What bind() does Difference between call, 00