gpt4 book ai didi

javascript - 用该数组中的值填充一个数组

转载 作者:行者123 更新时间:2023-11-30 06:55:07 24 4
gpt4 key购买 nike

比如我有

this.clients.clientTypes = [10,20,30,40]

this.clients.clientInputs.length 具有所需的长度,假设此示例为 8(这始终与类型成正比)

如何填充数组 this.clients.clientTypes 以便得到 [10,20,30,40,10,20,30,40]

this.clients.clientTypes = Array(this.clients.clientInputs.length).fill(??)

最佳答案

请告诉我这正是您想要的。

let array = [10, 20, 30, 40],
len = 8,
result = Array.from({length: len}).map((v, i) => array[i % array.length]);
console.log(result);

关于javascript - 用该数组中的值填充一个数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50507327/

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