我想从另一个具有模数的数组中创建一个包含4个元素的数组,您能帮我吗? 我编写类似这样的代码,但效果不佳...我只有元素数组的第一个元素
this.questions.questionsJson.map(function(el, index) {
el.prop.map(function(el) {
if (index % 10 == 0) arrColors.push(el.c);
});
arrColorsQuestion.push(tabColors);
console.log(arrColorsQuestion);
});