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 (2015) The Request and Response Objects in Express Responses and the Response Object

Rifqi Fahmi
Rifqi Fahmi
23,164 Points

I think thats not how to make the parameter optional, is'n it ?

The parameter works like regex, to my knowledge the "?" (question mark) makes the preceding token in the regular expression optional. So if you type it like that:

:title? // :titl or :tittle

it will match :titl or title. I suggest we type it like this :

(:title)?

CMIIW. Huston Hedinger

Thanks

Bryan LeBlanc
Bryan LeBlanc
2,482 Points

Your suggestion doesn't work. Try running it.