配列 (10 個の項目がある) を最大項目数を含む 4 つのチャンクに分割する方法n
。
var a = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j'];
//a function splits it to four arrays.
console.log(b, c, d, e);
そしてそれは印刷します:
['a', 'b', 'c']
['d', 'e', 'f']
['j', 'h', 'i']
['j']
上記は を前提としn = 3
ていますが、値は動的でなければなりません。
ありがとう