标签: javascript arrays
我有一个看起来像这样的对象:
obj = {a: 5, b: 2, c: 3}
我想要一个看起来像这样的数组:
array = [{a: 5}, {b: 2}, {c: 3}]
请有人帮我吗?