gpt4 book ai didi

javascript - 多次循环遍历数组

转载 作者:行者123 更新时间:2023-12-03 07:16:41 24 4
gpt4 key购买 nike

如何重复 colors数组按顺序排列,给定未知长度 items ?

const items = [1, 2, ...n]
const colors = ['blue', 'green', 'red']

// return ['blue', 'green', 'red', 'blue', 'green'] where items.length = 5

最佳答案

const items = [1, 2, 3,4,5,6,7,8]
const colors = ['blue', 'green', 'red']

const result = items.map((_,i) => colors[i%colors.length]);

console.log(result);

关于javascript - 多次循环遍历数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62922991/

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