Skip to content

Instantly share code, notes, and snippets.

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