CRUD (Create, Read, Update, Delete) operations in MongoDB use methods on collections. They work with documents and use a flexible, JSON-like query syntax — different from SQL but conceptually similar.
Create — insert documents
db..({ : , : });
db..([
{ : , : },
{ : , : }
]);
