Skip to content

Instantly share code, notes, and snippets.

@jeffyuhaoliu
Last active December 22, 2015 11:38
Show Gist options
  • Save jeffyuhaoliu/6466623 to your computer and use it in GitHub Desktop.
Save jeffyuhaoliu/6466623 to your computer and use it in GitHub Desktop.
Node.js MongoDB HW#3.3
posts.update({"permalink": permalink}, {$push: { "comments": comment }}, function(err, doc) {
if (err) {
return callback(err, null)
}
else {
console.dir(doc + " : Comments added!")
return callback(null, doc);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment