Created
August 14, 2016 12:55
-
-
Save VincentDamour/bc11eda2b3c7a3d09878cbee59de59f6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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