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 JavaScript Loops, Arrays and Objects Tracking Multiple Items with Arrays Useful Array Methods

Keith Ford
Keith Ford
4,416 Points

Any idea with this for Loop doesn't seem to be working? When I type "list" into the prompt, nothing happens.

I know using a for Loop is not the suggested way to solve this problem, but I can't figure out why inStock isn't printing.

https://w.trhou.se/kern77n5ms

1 Answer

Seth Kroger
Seth Kroger
56,413 Points

In your if statements you are using a single equals sign (which means assignment) instead of double/triple equal signs (which means test for equality).

  if (search.toUpperCase === "QUIT") {
    break;
  } else if (search.toUpperCase === "LIST") { 
   // ...print out the list...
  }