PSPranabesh Singha Royinpranabeshcodes.hashnode.dev·Apr 22 · 5 min readLinux File System HuntingWhen people start learning Linux, they usually focus on commands—ls, cd, mkdir, etc. But the real power of Linux lies not in commands, but in its file system design philosophy. Everything in Linux is 00
PSPranabesh Singha Royinpranabeshcodes.hashnode.dev·Mar 14 · 6 min readJavaScript Operators Explained: Arithmetic, Comparison, Logical, and AssignmentWhen writing JavaScript programs, we often need to perform calculations, compare values, and make decisions. To do these tasks, JavaScript provides operators. Operators are one of the fundamental buil00
PSPranabesh Singha Royinpranabeshcodes.hashnode.dev·Mar 14 · 6 min readUnderstanding this, call(), apply(), and bind() in JavaScript (Beginner to Intermediate Guide)One of the concepts that confuses many JavaScript learners is the keyword this. At first glance it may seem mysterious, but once you understand the idea behind it, the concept becomes much clearer. In00
PSPranabesh Singha Royinpranabeshcodes.hashnode.dev·Mar 14 · 7 min readFunctions in JavaScript: Writing Reusable and Organized CodeAs programs grow larger, repeating the same code again and again becomes inefficient. Imagine writing a program where you need to perform the same task many times — like calculating totals, greeting u00
PSPranabesh Singha Royinpranabeshcodes.hashnode.dev·Mar 14 · 6 min readJavaScript Arrays 101When writing programs, we often need to store multiple related values. For example, imagine storing a list of fruits, student marks, or daily tasks. If we store each value in separate variables, the c00