Skip to content

Instantly share code, notes, and snippets.

@mgmgpyaesonewin
Created July 30, 2018 09:57
Show Gist options
  • Save mgmgpyaesonewin/21656a0d7511df13b5442e90ee351564 to your computer and use it in GitHub Desktop.
Save mgmgpyaesonewin/21656a0d7511df13b5442e90ee351564 to your computer and use it in GitHub Desktop.
let arr = ['label one', 1, 'label two', 2, 'label 3', 3];
arr.chunk(2)
.map(([label, value]) => ({ label, value }));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment