SSantrainblog-santra.hashnode.dev00The new Keyword in JavaScriptMay 6 · 6 min read · Most JavaScript developers use new early on -new Date(), new Map(), new Promise() without thinking much about what's actually happening. It works, so you move on. But new is doing quite a bit of work Join discussion
AYAbhishek Yadavinterminal-thoughts.hashnode.dev00The new Keyword in JavaScript: The Magic Behind Object CreationApr 23 · 4 min read · In the world of JavaScript, we often need to create multiple objects that share the same structure as hundreds of "User" profiles or thousands of "Product" cards. While you could manually type out eacJoin discussion
JVJanardhan Vermainjavascript-oop.hashnode.dev00Understanding the new Keyword in JavaScriptMar 26 · 5 min read · Today let's start with an example. function Student(name, standard, age) { this.name = name; this.standard = standard; this.age = age; } Here we have a blueprint for creating student objeJoin discussion