Quiz: MongoDB and Deno
Quiz yourself on the use of MongoDB with Deno.
We'll cover the following...
1
How do we access a database using the MongoDB driver for Deno?
A)
const db = client.database("educative");
B)
const db = client.connect("educative");
C)
const db = client.use("educative");
D)
const db = client.db("educative");
Question 1 of 50 attempted
Ask