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 Arrays Loop Through Arrays Locate and Join Array Elements

Kristine Zakaite
Kristine Zakaite
2,236 Points

.toLowerCase conversion in the prompt variable

I added .toLowerCase() in the prompt variable instead, and it seemed to work perfectly. Is that option also possible or would at some point the code be wrong?

const search = prompt('Search for a product.').toLowerCase();

Thank you. Kristine

1 Answer

Steven Parker
Steven Parker
229,644 Points

Sometimes you might want to preserve the original response to use in feedback to the user. But when all you need is a case-converted term then it doesn't matter when you perform the conversion, and doing it this way makes the code a bit more compact.