Created
July 19, 2017 10:44
-
-
Save azizmashkour/588a7925ffb74795e12307b0aff509bb to your computer and use it in GitHub Desktop.
This file contains hidden or 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
users = [ | |
{ | |
username: 'Paul Graham' | |
age: 2 | |
} | |
{ | |
username: 'Bill Gate' | |
age: 0 | |
} | |
{ | |
username: 'Mark Zuckerberg' | |
age: 1 | |
} | |
] | |
users.sort (a, b) -> | |
if a.age > b.age then 1 else if b.age > a.age then -1 else 0 | |
console.log users |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment