Created
January 9, 2017 16:42
-
-
Save saginadir/31eded9f00dba986b1b928fbd15e3e5c to your computer and use it in GitHub Desktop.
This file contains 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
const players = {itamar: 1200, eddie: 1210, eli: 1183, uriel: 1201}; | |
const sortedPlayers = _.orderBy(_.map(players, (v, k) => ({name: k, rank: v})), ['rank'], ['desc']); | |
console.log(sortedPlayers); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment