Skip to content

Instantly share code, notes, and snippets.

@VincentDamour
Created August 14, 2016 12:55
Show Gist options
  • Save VincentDamour/bc11eda2b3c7a3d09878cbee59de59f6 to your computer and use it in GitHub Desktop.
Save VincentDamour/bc11eda2b3c7a3d09878cbee59de59f6 to your computer and use it in GitHub Desktop.
var posts = [
{ id: "1abc", title: "First blog post", content: "..." },
{ id: "2abc", title: "Second blog post", content: "..." },
// more blog posts
{ id: "34abc", title: "The blog post we want", content: "..." }
// even more blog posts
];
posts = _.keyBy(posts, "id");
var post = posts["34abc"]
// post -> { id: "34abc", title: "The blog post we want", content: "..." }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment