Tell us what’s happening:
I have passed this test, but was wondering if the mark
:
inside "/:word is a must?
Why don’t we just use “/word”?
I tried both url path and it all show me the same result, so what’s the difference?
app.get("/:word/echo", (req, res) => {
const { word } = req.params;
res.json({
echo: word
});
});
Your project link(s)
solution: https://boilerplate-express.iku124.repl.co
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.192 Safari/537.36
.
Challenge: Get Route Parameter Input from the Client
Link to the challenge: