Skip to content

Instantly share code, notes, and snippets.

@h09shais
Created November 7, 2018 12:37
Show Gist options
  • Save h09shais/251524148c95e0af5f61fe5051de5ab6 to your computer and use it in GitHub Desktop.
Save h09shais/251524148c95e0af5f61fe5051de5ab6 to your computer and use it in GitHub Desktop.
JavaScript: Underscore Array to Object
_.object(
_.map(["One", "Two", "Three"], function(value, key) {
return [value, value];
})
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment