Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/stevemao/list-to-matrix


https://github.com/stevemao/list-to-matrix

Last synced: 6 days ago
JSON representation

Awesome Lists containing this project

README

        

> Convert list to matrix

Code copied from https://stackoverflow.com/a/4492417/2075423

```js
listToMatrix([1, 2, 3, 4, 5, 6, 7, 8, 9], 3)
// => [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
```