Object.entries/Object.values/Object.keys
const family = {
father: "Jonathan Kent",
mother: "Martha Kent",
son: "Clark Kent",
}
Object.keys(family);
// ["father", "mother", "son"]Object.values(family);
// ["Jonathan Kent", "Martha Kent", "Clark Kent"]const object1 = {
a: 'somestring',
b: 42
};
for (let [key, value] of Object.entries(object1)) {
console.log(`${key}: ${value}`);
}
// expected output:
// "a: somestring"
// "b: 42"
// order is not guaranteed最后更新于