Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Express Basics Parameters, Query Strings, and Modularizing Routes Linking Around the Application

Do you need to create a new route to randomize the cards?

I added the following line of code to my conditional:

    templateData.id = Math.floor(Math.random() * cards.length);

and now when someone clicks the Question link, they are given a new random card. This solution is functional but should I do be doing it the way Andrew does in the video?

Here's the whole route:

router.get("/:id", (req, res) => {
  const side = req.query.side;
  const id = req.params.id;
  const text = cards[id][side];
  const hint = cards[id].hint;

  const templateData = { id, text };

  if (side === "question") {
    templateData.hint = hint;
    templateData.sideToShow = "answer";
  } else if (side === "answer") {
    templateData.sideToShow = "question";
    templateData.id = Math.floor(Math.random() * cards.length);
  }

  console.log(templateData);
  res.render("card", templateData);
});