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 trialChristina Blair
Full Stack JavaScript Techdegree Student 981 PointsFeedback? Was there anything that could be done better or more efficiently?
Also...I'm still a little confused about where to add .toLowerCase(). I feel like it would have been useful here after I had someone fill in the blanks and they capitalized the first letter of each word they entered.
Where would I add that?
2 Answers
Darrell Conklin
Python Development Techdegree Student 22,377 PointsYou would add it whenever you called a variable that you wanted to convert to lower case ex:
message += " jumped over the " + adj_two.toLowerCase();
as far as efficiency goes it's adequate, I wouldn't worry too much about it at this point so long as you learn what they're trying to teach you.
Bader Alsabah
4,738 PointsI believe Eliyah's answer above covered the use of toLowerCase()
and your code looks fine and achieves the desired practice and output. So, keep at it & goodluck!