We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
inside connection.js where we are getting all the list of database let/const/var is missing :
async function listDatabases(client) { //here databasesList = await client.db().admin().listDatabases(); console.log("Databases:"); databasesList.databases.forEach(db => console.log(` - ${db.name}`)); };
The text was updated successfully, but these errors were encountered:
Benefits ? By explicitly declaring it with const, code will be more predictable and easier to maintain
Sorry, something went wrong.
No branches or pull requests
inside connection.js where we are getting all the list of database let/const/var is missing :
The text was updated successfully, but these errors were encountered: