JavaScript 将对象的值转换为数组
示例
给定此对象:
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!"]
给定此对象:
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!"]