Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var User = mongoose.model('User');
- var user = new User();
- user.email = '[email protected]';
- user.password = 'test';
- user.firstName = 'Seth';
- user.lastName = 'Charles';
- user.goals.push({title: "Hello, world!"});
- user.goals.push({title: "Goodnight!"});
- user.save(function (err) {
- // Did it work?
- });
Add Comment
Please, Sign In to add comment