Guest User

Untitled

a guest
Oct 21st, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. Mycollection = new Meteor.Collection("mycollection");
  2.  
  3. Meteor.startup(function () {
  4. Mycollection.insert({name: test1});
  5. Mycollection.insert({name: test2});
  6. var my_collection = Mycollection.find({}, {sort: {name: 1}});
  7. console.log(my_collection.count);
  8. my_collection.forEach(console.log('test'));
  9. });
Add Comment
Please, Sign In to add comment