将对象值转换为数组
鉴于此对象:
var obj = {
a: "hello",
b: "this is",
c: "javascript!",
};
你可以通过执行以下操作将其值转换为数组:
var array = Object.keys(obj)
.map(function(key) {
return obj[key];
});
console.log(array); // ["hello", "this is", "javascript!"]