Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. {id: 123, user: 'User14', score: 101}
  2. {id: 231, user: 'User10', score: 400}
  3. {id: 412, user: 'User90', score: 244}
  4. {id: 111, user: 'User12', score: 310}
  5. {id: 221, user: 'User88', score: 900}
  6. {id: 521, user: 'User13', score: 103}
  7.  
  8. + thousands more...
  9.  
  10. highscores
  11. .find()
  12. .sort({'score': -1})
  13. .limit(5)
  14. .exec(function(err, users) { ...code... });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement