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 trialChristian Steffensen
Courses Plus Student 252 PointsWhy am I getting >> Uncaught ReferenceError: promt is not defined at conditionals.js:1 << ??
My code line should be exactly as the teacher's code line.
Link to Snapshot: https://w.trhou.se/1u2g26ob54
2 Answers
Jennifer Nordell
Treehouse TeacherHi there, Christian Steffensen ! You're super close. In fact, you're exactly one letter off. You have a typo and have accidentally typed promt
where you meant to type prompt
. Note that there are two "p"s in the latter version.
The line you need should be:
const answer = prompt('Which planet is closest to the sun?');
Hope this helps!
Christian Steffensen
Courses Plus Student 252 PointsHow do you place the Code line in the comment? "The black box with the correct code".
Christian Steffensen
Courses Plus Student 252 PointsChristian Steffensen
Courses Plus Student 252 PointsThank you for your time and help. Danm typo!!