Skip to content

Instantly share code, notes, and snippets.

@saginadir
Created January 9, 2017 16:44
Show Gist options
  • Save saginadir/92ad4f8b07139255f137cfc81d83f13b to your computer and use it in GitHub Desktop.
Save saginadir/92ad4f8b07139255f137cfc81d83f13b to your computer and use it in GitHub Desktop.
const res = _({itamar: 1200, eddie: 1210, eli: 1183, uriel: 1201})
.map((v, k) => ({name: k, rank: v}))
.orderBy(['rank'], ['desc'])
.value();
console.log(res); // Done!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment