RRekonsinblog.rekons.io·Sep 12 · 6 min readFrom One Prompt to a Playable 3D Prototype: Testing GPT-6 AstraWhat if you could describe a simple idea and receive something you could immediately open, test, and improve, not just a written answer? That was the question behind my latest GPT-6 Astra experiment. 10
MMaverickinjyanshu.hashnode.dev·Jun 18 · 10 min readPrototype PatternThe Prototype Pattern is a creational design pattern that allows you to create new objects by copying existing ones, rather than creating them from scratch. Think of it as a "copy machine" for objects00
GNGaurang Nagarinblogs.gaurangpods.com·Apr 30 · 6 min readThe new Keyword in JavaScriptf you’ve been writing JavaScript for a bit, you’ve definitely seen the new keyword. At first glance, it feels simple, you write new something and you get an object. But internally, more things are hap00
KKKoushik Karmakarinthe-new-keyword-in-javascript-by-koushik.hashnode.dev·Apr 13 · 4 min readThe new Keyword in JavaScriptIn JavaScript the new keywords comes in very few times. When ever you deal with Oops in your codebase, new keyword comes in. But just use this with no proper logic is not fair. So let's understand thi00
JDJyoti Dwivediinjs-learn-fun.hashnode.dev·Apr 13 · 10 min readThe new Keyword in JavaScriptThe Cookie Cutter Moment 🍪 Last Diwali, my little cousin asked me to help make cookies. She handed me a star-shaped cookie cutter and said, "Make a hundred of these." I pressed the cutter into the do00
SKShubham Kumar Singhinblog.realdev.club·Apr 10 · 3 min readHow Everything is an Object in JavaScript (Prototype Explained)If you’ve been learning JavaScript, you’ve probably heard: “Everything in JavaScript is an object” 1. The Real Core Concept: Prototype Chain Let’s start with a simple example: const user1 = { 00
KSKanishka Shashiinjavasblog.hashnode.dev·Apr 4 · 4 min readThe new Keyword in JavaScriptWhen you start working with objects in JavaScript, you’ll often see the keyword new. It looks simple—but behind the scenes, it does a lot of important work. In this blog, we’ll understand: What the n00
DSDiwya sudarshan kaushikindskwebdev.hashnode.dev·Mar 25 · 4 min readString Polyfills and Common Interview Methods in JavaScript1. What are String Methods? String methods are built-in functions provided by the String.prototype that allow us to inspect, manipulate, or transform text. Conceptually: Think of a string method as a 00
AGArmaan Garginnewkewordbyarmaan.hashnode.dev·Mar 24 · 5 min readThe new Keyword in JavaScriptIntroduction In JavaScript, creating objects is something we do all the time—but have you ever stopped to think about what actually happens behind the scenes? When you write something like: const user00
SMSubhadip Mishrainsubhadipmishra1901.hashnode.dev·Mar 12 · 10 min readOOP in JavaScript: Classes, Prototypes & The Hidden EngineMost developers use .map() every single day. Almost none know where it actually comes from. Most developers write class Person {} and think it works like Java. It doesn't. JavaScript put a "class" sti00