After attempting the code below to set up a new database, I can't seem to find it in my MongoDB local connection. Despite using a callback function that didn't return any errors.
const mongoose = require("mongoose");
mongoose.connect("mongodb://localhost:27017/personDB", { useUnifiedTopology: true, useNewUrlParser: true });