Here's how you save a document to MongoDB:
db.scores.save({a: 99});
This command saves the document '{a: 99}' to the 'scores' collection. To query the document, we do
db.scores.find();
Here's how you save a document to MongoDB:
db.scores.save({a: 99});
This command saves the document '{a: 99}' to the 'scores' collection. To query the document, we do
db.scores.find();