JavaScript 中对象转换为数组的方法有以下三种:1. 使用 Object.values() 方法;2. 使用 object.keys() 和 map() 方法;3. 使用扩展运算符。
如何使用 JavaScript 将对象转换为数组
要将 JavaScript 对象转换为数组,可以使用以下方法:
1. 使用 Object.values() 方法
const myObj = { name: "John", age: 30, city: "New York" }; const myArr = Object.values(myObj); console.log(myArr); // ["John", 30, "New York"]
2. 使用 Object.keys() 和 map() 方法
const myObj = { name: "John", age: 30, city: "New York" }; const myArr = Object.keys(myObj).map(key => myObj[key]); console.log(myArr); // ["John", 30, "New York"]
3. 使用扩展运算符
const myObj = { name: "John", age: 30, city: "New York" }; const myArr = [...Object.values(myObj)]; console.log(myArr); // ["John", 30, "New York"]