将数组元素划分为等长的块(二维数组)

index.ts

import * as _ from "lodash";

const list = [1, 2, 3, 4, 5];
const arr = _.chunk(list, 2);

console.log(arr); // [[1, 2], [3, 4], [5]]

posted on 2021-09-10 10:11  aisowe  阅读(47)  评论(0编辑  收藏  举报

导航