The `new` Keyword in JavaScript
In JavaScript, the easiest way to create an object is by using curly braces {}. This is called an Object Literal.
const user1 = { name: "Alia", age: 25 };
This is perfectly fine if you only need one o
rajesh71webdev.hashnode.dev5 min read