Skip to content

Instantly share code, notes, and snippets.

@lumixraku
Created September 11, 2020 14:48
Show Gist options
  • Save lumixraku/7659bf7230ee94238b61900438a1522d to your computer and use it in GitHub Desktop.
Save lumixraku/7659bf7230ee94238b61900438a1522d to your computer and use it in GitHub Desktop.
数组分组
const listChunk = (list, size = 1, cacheList = []) => {
const tmp = [...list]
if (size <= 0) {
return cacheList
}
while (tmp.length) {
cacheList.push(tmp.splice(0, size))
}
return cacheList
}
console.log(listChunk([1, 2, 3, 4, 5, 6, 7, 8, 9])) // [[1], [2], [3], [4], [5], [6], [7], [8], [9]]
console.log(listChunk([1, 2, 3, 4, 5, 6, 7, 8, 9], 3)) // [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
console.log(listChunk([1, 2, 3, 4, 5, 6, 7, 8, 9], 0)) // []
console.log(listChunk([1, 2, 3, 4, 5, 6, 7, 8, 9], -1)) // []
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment