如何将对象的属性转换为属性数组

时间:2019-05-02 19:53:05

标签: javascript node.js

我正在尝试找到一种与Python的dict.items()dict.iteritems()类似的Javascript对象方法。

给出一些带有键-值对的对象,我试图返回所有键的数组。

const instance = {
  a: 0,
  b: 1,
  c: 2
};

// .items() is used as an example
console.log(instance.items());

这种方法的预期结果将是:

[ 'a', 'b', 'c' ]

0 个答案:

没有答案