๐ Bug HuntND Node.js Easyโก+10 XP
Missing Await
This async route doesn't wait for the database.
๐ Find the bug
1
app.get("/users", async (req, res) => {2
const users = User.find();3
res.json(users);4
});๐ The bug is on line 2