How to Query a Document with condition in MongoDB?

Below is the MongoDB query statement that finds all documents where a == 2.

db.scores.find({a: 2});

Below MongoDB query statement that finds all documents where a > 15?

db.scores.find({a: {'$gt': 15}});