# How to add data in MongoDB?

The MongoDB shell provides the following methods to insert documents into a collection: 

- To insert a single document, use db.collection.insertOne() 
- To insert multiple documents, use db.collection.insertMany()

Sources:

Insert Documents — MongoDB Shell. www.mongodb.com/docs/mongodb-shell/crud/insert.
