Guest User

Untitled

a guest
Aug 27th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. db = connect("localhost:27017/test");
  2. var cursor = db.unicorns.find({gender : "m"});
  3. var total = 0;
  4. while(cursor.hasNext()) {
  5. var obj = cursor.next();
  6. total += (obj.hits || 0);
  7. }
  8. print(total);
Add Comment
Please, Sign In to add comment