Returns the names of the enumerable string properties and methods of an object.
keys(object)
object
An object.
An array of strings.
If the object has no enumerable string properties and methods, an empty array is returned.
Object.keys({cheese: "like", milk: "dislike"})
["cheese", "milk"]