Inside a template literal, the expression ${a + b} will __________ the values of a and b.

  • Concatenate
  • Add
  • Multiply
  • Evaluate
The expression ${a + b} inside a template literal will evaluate the values of 'a' and 'b'. It performs the specified operation (in this case, addition) and includes the result in the string.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *