basics-for-js.hashnode.devnode.js ArchitectureEver wondered Javascript being a single threaded language how much faster it is. It almost seems like multi-threaded language handling multiple things simultaneously. That's not how core js works, it'1d ago·6 min read
basics-for-js.hashnode.devControl Flow in JavaScript: If, Else, and Switch ExplainedThis is how normally program runs start | V line 1 execute | V line 2 execute | V line 3 execute | ... | V line N execute | V end control flow- the order in which statements 2d ago·4 min read
basics-for-js.hashnode.devJavaScript Operators: The Basics You Need to Knowwait, what happened here? they both look same, right? then why is one returing false? cuz, both == and === are comparison operators but they behave very differently. but first what are operators? what4d ago·6 min read
basics-for-js.hashnode.devUnderstanding Variables and Data Types in JavaScriptVariables- Variables can be imagined as containers that stores data values. Variables holds different types of data that can be number , string , boolean, objects and many more. Benefit of using varia4d ago·7 min read
gagandev.hashnode.devUnderstanding Network DevicesWhen we deploy a backend, spin up a cloud server, or debug a production issue, we often say “the network is slow” without truly understanding what that network looks like. Behind every HTTP request lies a chain of network devices, each with a very sp...Jan 31·5 min read