Steps to Find Documents in MongoDB
1).Open the MongoDB Shell using mongosh.
2).Select the database using use database_name.
3).Select the collection containing the documents.
4).Use the find() method to retrieve documents.
5).View the results returned by MongoDB.
use studentdb
db.students.find()