# list-to-matrix **Repository Path**: mirrors_stevemao/list-to-matrix ## Basic Information - **Project Name**: list-to-matrix - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2025-09-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## 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]] ```