Objects, Sets And Maps
Objects
An object is a datatype which stores various key-value pairs and more complex entities. Objects can be created using the Object() constructor or the object initializer / literal syntax.
const person = {
firstName : 'John',
lastName : ...
tanishka.hashnode.dev4 min read