我如何用索引为%的数组元素创建数组

时间:2019-06-13 15:39:34

标签: javascript algorithm vue.js

我想从另一个具有模数的数组中创建一个包含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);
});

0 个答案:

没有答案