Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save azizmashkour/588a7925ffb74795e12307b0aff509bb to your computer and use it in GitHub Desktop.
Save azizmashkour/588a7925ffb74795e12307b0aff509bb to your computer and use it in GitHub Desktop.
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