NKNitish kumarinhackathon-nitish.hashnode.dev·Apr 26 · 5 min readThe Day I Realized AI Could Ship Code Faster Than We Could Secure ItBuilt in the open. Trained in public. Shipped with the spirit of the open-source AI community. A February Evening That Changed My Thinking On 17 February, I walked into an Anthropic event carrying o00
NKNitish kumarinbuildingsblock.hashnode.dev·Mar 15 · 7 min readArrow Functions in JavaScript: A Simpler Way to Write FunctionsSame power, less typing. Arrow functions are the shorthand you'll use everywhere. 1. What Are Arrow Functions? Arrow functions are a shorter, cleaner syntax for writing functions introduced in ES6 (00
NKNitish kumarinbuildingsblock.hashnode.dev·Mar 15 · 5 min readArray Methods You Must KnowLoops are fine. But these methods make working with arrays faster, cleaner, and more expressive. 1. push() and pop() — Add and Remove from the End push() adds one or more elements to the end of an a00
NKNitish kumarinbuildingsblock.hashnode.dev·Mar 15 · 6 min readControl Flow in JavaScript: If, Else, and Switch ExplainedCode doesn't always run top to bottom. Sometimes it has to make a choice. 1. What Is Control Flow? By default, JavaScript runs your code line by line, top to bottom. But real programs need to make d00
NKNitish kumarinbuildingsblock.hashnode.dev·Mar 15 · 6 min readUnderstanding Variables and Data Types in JavaScriptBefore your code can do anything useful, it needs to remember things. That's what variables are for. 1. What Are Variables and Why Do We Need Them? Imagine you're filling out a form. You write your 00