On this page
Provides access to database objects from the mongo shell or from a JavaScript file.
The Mongo.getDB() method has the following parameter:
The following example instantiates a new connection to the MongoDB instance running on the localhost interface and returns a reference to "myDatabase":
db = new Mongo().getDB("myDatabase");
See also
Mongo() and connect()