Skip to content

Instantly share code, notes, and snippets.

@f5io
Created April 15, 2016 10:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save f5io/d4b217c610ee5bc78b71ac9f70361f3a to your computer and use it in GitHub Desktop.
Save f5io/d4b217c610ee5bc78b71ac9f70361f3a to your computer and use it in GitHub Desktop.
const zip = (arr, length = 2) =>
Array.from({ length }, (_, i) =>
arr.filter((_, j) =>
j % length === i));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment