Which statement correctly describes template literals (backtick strings)?

JavaScript Associate Easy

JavaScript Associate — Easy

Which statement correctly describes template literals (backtick strings)?

Key points

  • Template literals enable multi-line string creation
  • Embedded expressions using ${} syntax are supported
  • They do not automatically escape special characters
  • Template literals are evaluated at runtime
  • They can embed various types of expressions, not just numbers

Ready to go further?

Related questions