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 trialGabrielle Lamarche
8,587 PointsUsing .isLowerCase() to user input variable in one line
Is it possible to do something like: var noun = (prompt("Pick a noun")).isLowerCase(); to keep your code on one line OR do you have to reassign it like: var noun = prompt("Pick a noun"); noun = noun.isLowerCase();
1 Answer
Jennifer Nordell
Treehouse TeacherHi there! I feel fairly certain you mean toLowerCase()
, but yes, you could do that all on one line. Besides the function name being off you also have some unnecessary parentheses.
This is how I would write it:
var noun = prompt("Pick a noun").toLowerCase();
Hope this helps!