gpt4 book ai didi

javascript - 将所有值从对象推送到数组?

转载 作者:行者123 更新时间:2023-12-04 00:30:51 25 4
gpt4 key购买 nike

我刚开始做程序员。有人可以帮我解决这个问题吗?到目前为止,我只有:

var myArr = [];
for (var k in input) {
myArr.push(

我走在正确的轨道上吗?

编写一个循环,将一个对象中的所有值推送到一个数组。

input: {two: 2, four: 4, three: 3, twelve: 12}
output: [2, 4, 3, 12]

最佳答案

没有循环:

const input = {two: 2, four: 4, three: 3, twelve: 12};
const myArr = Object.values(input);
console.log(myArr);
// output: [2, 4, 3, 12]

关于javascript - 将所有值从对象推送到数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28604132/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com