The new Keyword in JavaScript
At some point while learning JavaScript, you've probably written something like this without fully questioning it :
let today = new Date();
let pattern = new RegExp("hello");
The new keyword just...
blog.rohitchornele.online6 min read