import { chunk } from "https://deno.land/x/ayonli_jsext@v0.9.72/array/index.ts";
Breaks the array into smaller chunks according to the given length.
Examples
Example 1
Example 1
import { chunk } from "@ayonli/jsext/array";
const arr = [1, 2, 3, 4, 5, 6, 7, 8, 9];
console.log(chunk(arr, 5)); // [[1, 2, 3, 4, 5], [6, 7, 8, 9]]
Parameters
arr: T[]