Split array into chunks of size n
7 August 2022 (Updated 27 October 2024)
You want a function that takes an array and splits it into chunks of size n
. Something like this:
If the array cannot be chunked into exact chunks of n
, the remaining elements will form a separate chunk (e.g., [14]
in the above example).
Here’s how in JavaScript:
Tagged:
Snippets
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment