gpt4 book ai didi

javascript - 将 javascript 数字数组转换为索引对

转载 作者:行者123 更新时间:2023-12-01 06:14:03 24 4
gpt4 key购买 nike

我有一个数字数组,如下所示:

[5, 29, 1, 5, 4919, 109, 17]

我想根据数组中的索引将其转换为数字对,如下所示:

[[0, 5], [1, 29], [2, 5], [3, 4919], [4, 109], [5, 17]]

我如何使用 javascript 做到这一点?

最佳答案

[5, 29, 1, 5, 4919, 109, 17].map(function(x,i){return [i,x];})

关于javascript - 将 javascript 数字数组转换为索引对,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20643242/

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