The `new` Keyword in JavaScript
In JavaScript, you might have seen new in code like:
const user = new User()
We use it, but many times we don’t really know what it’s doing internally.
It feels like it just creates an object.
But ac
blog.dhiraj.dev3 min read