Javascript – node js crashing, saying a variable is undefined, when it isnt
Here is my GET request handler, to render a page: app.get("/:band", async (req, res) => { const page = req.params.band; try { const result = await db.query("SELECT * FROM artists"); const artistData = result.rows; const band = artistData.findIndex((info) => info.onewordid…