📜  查看对象键 javascript 代码示例

📅  最后修改于: 2022-03-11 15:04:09.678000             🧑  作者: Mango

代码示例1
// Use `Object.entries(obj)`

const myObject = {a: 1, b: 2, c: 3};
console.log(
  Object.entries(myObject)
);