Guest User

Untitled

a guest
Jul 23rd, 2018
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. var User = mongoose.model('User');
  2.  
  3. var user = new User();
  4.  
  5. user.email = 'swcharl@gmail.com';
  6. user.password = 'test';
  7. user.firstName = 'Seth';
  8. user.lastName = 'Charles';
  9.  
  10. user.goals.push({title: "Hello, world!"});
  11. user.goals.push({title: "Goodnight!"});
  12.  
  13. user.save(function (err) {
  14. // Did it work?
  15. });
Add Comment
Please, Sign In to add comment