2P28. Parth Mahajaninparthblogs.hashnode.dev·Apr 28 · 4 min readSessions vs JWT vs Cookies: Understanding Authentication ApproachesIntroduction: Authentication is a core part of every web application. Whether you're building a simple login system or a large-scale distributed system, choosing the right authentication approach matt00
2P28. Parth Mahajaninparthblogs.hashnode.dev·Apr 20 · 6 min readLinux File System HuntingLinux is an operating system that organizes and manages data using a structured filesystem. At first glance, it may look like a simple collection of directories and files arranged in a hierarchical (t00
2P28. Parth Mahajaninparthblogs.hashnode.dev·Apr 16 · 3 min readAsync Code in Node.js: Callbacks and Promiseswhat is async code in javascript: Asynchronous code in JavaScript allows the program to execute other tasks without waiting for long-running operations (like API calls, file reading, or timers) to com11L
2P28. Parth Mahajaninparthblogs.hashnode.dev·Mar 25 · 3 min readUnderstanding the this Keyword in JavaScriptThe this keyword in JavaScript is one of the most important and sometimes confusing concepts for beginners. It behaves differently depending on how and where a function is called. Understanding this i00
2P28. Parth Mahajaninparthblogs.hashnode.dev·Mar 25 · 4 min readMap and Set in JavaScriptJavaScript provides powerful data structures to store and manage data efficiently. Apart from traditional objects and arrays, ES6 introduced two important data structures: Map and Set. These help solv00