MongoDB's db.collection.drop() is used to drop a collection from the database.
First, check the available collections into your database mydb.
> use mydb
switched to db mydb
> show collections
newCollection1
newCollection2
newCollection3
system.indexes
Now drop the collection with...