Different ways to create objects in JavaScript
Originally posted here!
Objects are a way of holding related data and code.
Using Objects literals
Objects can be created using literals.
To create an object literal define a variable and assign it with curly braces {}.
// object literal
const Pe...
melvingeorge-me.hashnode.dev4 min read