Object.keys(obj)
Returns an array containing the names of all properties of an object.
Object.values(obj)
Returns an array containing the keys
Object.hasOwnProperty(prop)
Returns a boolean based on the prop
Object.entries(obj)
Returns an array of arrays where each inner array has the key and value pair
Delete object.property
Delete a key,value pair