The new Keyword in JavaScript
Most people consider the new keyword has something to do with the class constructor, that it is used to create instances using a class, also known as constructor invocation. For example:
// "Constructor function"
function Article(username) {
this.u...
akashsdas.hashnode.dev5 min read