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 Displaying the Search Results

Where does this.query come from?

I'm a little confused about how this.query is used.

Where is query and what is it's purpose?

The only thing I can think of is it's coming from the app.js file where 'query' is used as an argument in the performSearch function but that wouldn't make much sense because we're not calling props.performSearch(query). The only other thing I can think of is perhaps it's native to JS?

2 Answers

Tomas Schaffer
Tomas Schaffer
11,606 Points

performSearch is function passed from parrent and query is argument of this function. Because you didnt share your code how can anybody know where is it come from? it is variable and it can be inserted from external file or whatever.

Joe Elliot
Joe Elliot
5,330 Points

I am wondering the same thing and had the same conclusion as you. I tested the theory by changing the argument name and matched all the references to that argument name.

So like Tomas said, it's because performSearch is a function passed as a prop to SearchForm.

Doesn't seem intuitive to me but I guess that's how it is!