Everything can be an object. An object has properties & properties have values.
Object = key-value pair.
An object is a mutable data structure = content can be modified after it gets created.
# Creating Objects
# Get Values from Object
# Setting new Keys in an Object
In this example we have to look at the person object, we created above
# Object Manipulation
# object.assign()
to copy an object without modifying the original object
# object.keys()
to get the keys/properties of an object as array
# object.values()
to get object values
# object.entries
to get object keys & values
# Check properties using hasOwnProperty()
to check if a specific key/property exists in an object.