Advertisement
Guest User

Untitled

a guest
Jan 29th, 2015
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. "results": {
  2. "collection1": [
  3. {
  4. "rank": "1",
  5. "id": "abc",
  6. "vote": "8542"
  7. },
  8. {
  9. "rank": "2",
  10. "id": "bcd",
  11. "vote": "2000"
  12. },
  13. ]
  14.  
  15.  
  16. function transform(data) {
  17.  
  18. for(var collection in data.results) {
  19.  
  20. data.results[collection].filter(function(user) {
  21. return user.vote === '8542';
  22. });
  23.  
  24.  
  25. }
  26.  
  27.  
  28. return data;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement