Created
January 9, 2017 16:43
-
-
Save saginadir/daca00312cb869f14e25b69f8300b731 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 res = _({itamar: 1200, eddie: 1210, eli: 1183, uriel: 1201}) | |
.map((v, k) => ({name: k, rank: v})) | |
.orderBy(['rank'], ['desc']); | |
console.log(res); // Not working. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment