QuestenaPractice that shows what to review next
Question 28

Classify the statements about expression interpolation in JavaScript strings. Select all that apply.

  1. A template placeholder evaluates its expressionCorrect answer
  2. An ordinary quoted string interpolates the same way
  3. The expression result is converted to textCorrect answer
  4. Interpolation inserts source code without evaluation

Explanation

A template placeholder evaluates its contained expression and converts the resulting value to text for insertion. The same marker-like characters inside an ordinary quoted string remain literal text, so quoted strings do not gain interpolation behavior.

Continue with this test

Start practice
Question 28: Classify the statements about expression interpolation in… · JavaScript Fundamentals · Questena