Update chunk.md

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-11-03 21:35:12 +02:00
committed by GitHub
parent 1e7ba229d7
commit f057d4d95b

View File

@ -17,5 +17,5 @@ const chunk = (arr, size) =>
```
```js
chunk([1, 2, 3, 4, 5], 2); // [[1,2],[3,4],[5]]
chunk([1, 2, 3, 4, 5], 2); // [[1, 2], [3, 4], [5]]
```