将数组元素划分为等长的块(二维数组)
摘要: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 @ 2021-09-10 10:11
posted @ 2021-09-10 10:11
posted @ 2021-09-10 09:44
posted @ 2021-09-09 10:21
posted @ 2021-09-09 10:20