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

Matthew Francis
Matthew Francis
6,967 Points

Express - What does dir mean in req.params.dir.search() do?

Screenshot:

https://gyazo.com/e454509102215a322b92ebeda84d13fa

I know it looks at the URL, but what does dir mean? and what is it's purpose?

1 Answer

Hey Matthew,

I believe the word "dir" in this snippet of code is looking for the direction of which the user votes and specifically looking, via regex search (/^up|down$/) for either the work up or down.

Matthew Francis
Matthew Francis
6,967 Points

Thanks for clarifying it's usage, but do you know what the "dir" literaly means?