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

Zack Lee
PLUS
Zack Lee
Courses Plus Student 17,662 Points

Setting default catches "Unexpected assignment" warning

When I try to set a default option for the performSearch function I get a console warning with no results on the page:

"warning Expected an assignment or function call and instead saw an expression no-unused-expressions"

my code looks exactly like Guils:

performSearch = (query = 'cats') => {
  //function stuff
}

1 Answer

Hi Zach,

I think it's because inside the source code you downloaded, ESLint is pre-installed https://eslint.org/docs/2.0.0/rules/no-unused-expressions And Guil didn't mention it in this cource