CC-10: Reading Objects
Objects
Code Challenge
const getAllKeys = (obj) => {
Object.keys(obj).forEach((key) => {
console.log(key);
});
};
// getAllKeys(associateInstructorAges) // will log to the console: "carmen", "itzel", "zo"Last updated