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 trialKelvin Atawura
Front End Web Development Techdegree Student 19,022 Pointsprompt or alert
how do you retrieve the information input into a prompt text frield and use it in your next line of code in javascript? say
prompt ("whats your name");
now when can i retrieve the name that the user enters and use it my next life of code,please? i know theres a video by Jim Hoskins but got a bad memory and can't remember where member which course exactly so any referral to the video would be very much helpful. thanks
1 Answer
Jeremy Menicucci
19,227 PointsAll you need to do is set it as a variable and call the variable later on.
var name = prompt("What's Your Name?");
console.log(name);
Kelvin Atawura
Front End Web Development Techdegree Student 19,022 PointsKelvin Atawura
Front End Web Development Techdegree Student 19,022 Pointsthanks mate struggled remembering that. that was helpful