24.
What are tagged templates in ES6 used for?
Manipulating array data
Creating new CSS rules
Executing SQL queries
Custom string interpolation
Correct: D
Tagged templates in ES6 allow you to customize string interpolation. They are used to process template literals by passing them through a function, allowing you to manipulate the string values and interpolate dynamic data.