The new Keyword in JavaScript
If you’ve been writing JavaScript for a while, you've almost certainly used the new keyword:
const date = new Date();
const array = new Array();
const person = new Person("Alice");
But have you ever
souparna-tech.hashnode.dev5 min read