Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
- Introducing Strings 6:43
- Transform and Manipulate Strings 6:04
- Introducing Strings Review 5 questions
- Capture Input 4:05
- Combine Strings 8:28
- Combine and Manipulate Strings 3 objectives
- Template Literals 5:19
- Display the Value of a String on a Page 7:55
- Variables and Strings Challenge 2:57
- Variables and Strings Challenge Solution 5:32
- Combine Strings and Template Literals Review 6 questions
- Write a Template Literal 1 objective

- 2x 2x
- 1.75x 1.75x
- 1.5x 1.5x
- 1.25x 1.25x
- 1.1x 1.1x
- 1x 1x
- 0.75x 0.75x
- 0.5x 0.5x
This video covers one solution to the "Variables and Strings" challenge.
"Variables and Strings" Challenge Solution
// 1. Declare variables and capture input.
const adjective = prompt('Please type an adjective.');
const verb = prompt('Please type a verb.');
const noun = prompt('Please type a noun.');
// 2. Combine the input with other words to create a story.
const sentence = `<p>There once was a ${adjective} programmer who wanted to use JavaScript to ${verb} the ${noun}.</p>`;
// 3. Display the story as a <p> inside the <main> element.
document.querySelector('main').innerHTML = sentence;
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
Minal Patel
1,269 Points1 Answer
-
Ashton Austad
310 Points1 Answer
-
Danny Chang
1,006 Points1 Answer
-
Ali khettouch
666 Points2 Answers
-
Zeke Swanson
Web Development Techdegree Student 8,301 Points2 Answers
-
Yazeed Hani
5,002 Points2 Answers
-
Glauber Tonelli
3,462 Points0 Answers
-
Gary Angarita
Full Stack JavaScript Techdegree Student 1,878 Points1 Answer
-
Terry Riggle
1,609 Points1 Answer
-
Nas Jones
7,849 Points2 Answers
-
ja5on
10,338 Points7 Answers
-
ja5on
10,338 Points5 Answers
-
Jason Widjaja
7,904 Points5 Answers
View all discussions for this video
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up