Object.keys(myObj) // returns an array with all the object's keys Object.values(myObj) // returns an array with all the object's values Object.entries(myObj) // returns an array of arrays containing both the keys and the values.