Jjameyinjsobfuscator.hashnode.dev·16h ago · 4 min readJavaScript Obfuscation: How It Works and When Developers Should Use ItJavaScript powers a large part of the modern web. From interactive interfaces to complete browser-based applications, developers often ship JavaScript code directly to users' browsers. This creates an00
AJAyush Jaininayushjjainn.hashnode.dev·4d ago · 5 min read Template Literals in JavaScriptYou know those wedding invitation cards, or those forwarded birthday messages on WhatsApp, where everything is already written and there is just a blank left for your name? "Dear ______, you are cordi00
VPVed Pandeyinvedpandeydev.hashnode.dev·Aug 20 · 16 min readMasterclass on TypeScriptIf JavaScript works, why was TypeScript created? Today we'll answer exactly that, and along the way we'll understand how types work, why interfaces and generics exist, and how a TypeScript project run10
VPVed Pandeyinvedpandeydev.hashnode.dev·Aug 20 · 25 min readModern Next.js: Routing, Layouts, Server Components, API Routes & Server ActionsEver wondered if a React app can have both its frontend and backend living in the same project, instead of two separate codebases? That's one of the amazing thing that NextJS offers, in this article w10
VPVed Pandeyinvedpandeydev.hashnode.dev·Aug 20 · 13 min readWhy NextJS Became the Default React FrameworkEver thought that if React is so popular, it's widely used in the industry then why exactly was NextJS created? Well, Today we'll be finding the answer to this question and understand why even React i10
VPVed Pandeyinvedpandeydev.hashnode.dev·Aug 19 · 15 min readReact Hooks Masterclass: useState, useEffect, and Custom HooksLet's start with a question. How does React remember information between renders? Every time your component re-renders, the function runs again from top to bottom. So if you have a variable like let c10
VPVed Pandeyinvedpandeydev.hashnode.dev·Aug 18 · 18 min readState Management: Context API, Prop Drilling, React.memo, useMemo, and useCallbackIf you are using React and you don't know about hooks like useCallback() and useMemo() or on the name of state management if you only know about useState(), you probably don't understand the full capa121
VPVed Pandeyinvedpandeydev.hashnode.dev·Aug 16 · 12 min readReact Fundamentals: Components, JSX, State, and Re-renderingYou've probably heard of React a dozens of times. Do you know why was it introduced? Are you still struggilng with JSX syntax, Components Architecture and States? If even 1 question of the above gives10
Fforze-devinforze.hashnode.dev·Aug 6 · 7 min readConverting JSX Back to HTML: 7 Edge Cases That Break Naive ConvertersEvery JSX-to-HTML converter handles className → class. That transformation is one line of code, and it is roughly 5% of the problem. I spent a while getting the other 95% right for a converter I maint00
NVNguyen Van Tuanintuannguyenhust.hashnode.dev·Aug 3 · 12 min readFlappy Bird - AI with Q-Learning1. Introduction The AI mode trains a Q-learning agent to play Flappy Bird autonomously, persists its learned Q-table in localStorage, and displays the total number of training episodes directly on the00