SMSudhanshu Mishrainjavascript-blog-1.hashnode.dev·2d ago · 10 min readUnderstanding Large Language Models: A Complete Guide for Beginners.The first time I used an AI chatbot like ChatGPT, I had a lot of questions. Does AI actually understand what I'm asking? If computers only understand 0s and 1s (binary), how can they answer questions 00
SMSudhanshu Mishrainsudhanshu1-dev.hashnode.dev·Apr 21 · 6 min read Linux Under the Hood (Deep Dive): What the File System Reveals About the OSMost people treat Linux like a command-line tool. But Linux is not just commands — it’s a system where almost everything is exposed through the file system. I explored a live Linux environment to unde10
SMSudhanshu Mishrainjavascript-blog-1.hashnode.dev·Mar 14 · 4 min readUnderstanding Arrays in JavaScript When writing programs, we often need to store multiple values together. Imagine you want to store a list of fruits, marks, or tasks. Writing separate variables for each value quickly becomes messy. Th10
SMSudhanshu Mishrainjavascript-blog-1.hashnode.dev·Mar 14 · 4 min readUnderstanding Functions in JavaScript: Declarations, Expressions, and HoistingFunctions are one of the most important concepts in JavaScript. They help you organize code, avoid repetition, and make programs easier to maintain. This guide explains what functions are, why we use 00
SMSudhanshu Mishrainjavascript-blog-1.hashnode.dev·Mar 14 · 5 min readUnderstanding this, Nested Functions, Detached Methods, and call(), apply(), bind() in JavaScriptJavaScript’s this keyword often feels confusing at first. The easiest mental model is simple: this refers to the object that is calling the function. If you remember this rule, most behavior becomes p00