InterviewSolution
Saved Bookmarks
| 1. |
What is a Document in MongoDB? |
|
Answer» A Document in MongoDB is an ORDERED SET of keys with associated values. It is represented by a map, hash, or dictionary. In JavaScript, DOCUMENTS are represented as objects: Complex documents will contain MULTIPLE key/value pairs: |
|