Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyMongoDBdocuments and collectionsSingle-choice MCQ

You insert documents one field apart in casing. Are `"Email"` and `"email"` the same field in MongoDB?

db.users.insertMany([ { _id: 1, Email: "a@x.com" }, { _id: 2, email: "b@x.com" } ])