- 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
Well done!
You have completed Combine Strings and Template Literals Review!
Quiz Question 1 of 6
Which of the following code examples logs Total points: 500
to the console?
Choose the correct answer below:
-
A
const points = 400; const bonusPts = 100; let total = `Total points: $(points + bonusPts)`; console.log(total);
-
B
const points = 400; const bonusPts = 100; let total = `Total points: ${points + bonusPts}`; console.log(total);
-
C
const points = 400; const bonusPts = 100; let total = `Total points ${points} + ${bonusPts}.` console.log(total);