Created
October 5, 2017 01:35
-
-
Save mattgaspar/9ae556203408b8dacbde7615f9a48947 to your computer and use it in GitHub Desktop.
Sorting a Map!
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
Sort by key | |
Numbers/Dates | |
new Map([...map].sort((a, b) => a[0] - b[0])) | |
Strings | |
new Map([...map].sort((a, b) => +(a[0] > b[0]) || +(a[0] === b[0]) - 1)) | |
Sort by an object property value | |
Numbers/Dates | |
new Map([...map].sort((a, b) => a[1][propertyName] - b[1][propertyName])) | |
Strings | |
new Map([...map].sort((a, b) => +(a[1][propertyName] > b[1][propertyName]) || +(a[1][propertyName] === b[1][propertyName]) - 1)) | |
[...map] | |
is shorthand for | |
Array.from(map) | |
and is the same as | |
[...map.entries()] | |
The string compare function is shorthand for this! | |
function compare(a, b) { | |
if (a < b) { | |
return -1; | |
} | |
if (a > b) { | |
return 1; | |
} | |
// a must be equal to b | |
return 0; | |
} | |
The + is used to turn true = 1 and false = 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment