MongoDB CRUD Operation
Create
db.people.insert({name: 'Harry', age: 25});
or
db.people.save({name: 'Harry', age: 25});
The difference with save is that if the passed document contains an _id field, if a document already exists with that _id it will be updated instead of...
inspriom07.hashnode.dev2 min read