Returns a chunked array of the provided array's elements.
Size must be positive and can be greater than the number of elements in this collection.
The number of elements to take in each chunk.
The array to chunk.
Chunked array of the provided array's elements.
import { chunked } from '@pacote/array'const array = [1, 2, 3, 4]chunked(2, array) // => [[1, 2], [3, 4]]chunked(3, array) // => [[1, 2, 3], [4]] Copy
import { chunked } from '@pacote/array'const array = [1, 2, 3, 4]chunked(2, array) // => [[1, 2], [3, 4]]chunked(3, array) // => [[1, 2, 3], [4]]
Returns a chunked array of the provided array's elements.
Size must be positive and can be greater than the number of elements in this collection.