The String.raw tag function returns a string where escape sequences like n are treated as _______ text.
- Formatted
- Raw
- Escaped
- Plain
The String.raw tag function in ES6 returns a string where escape sequences are treated as raw text. It is useful when you want to include backslashes in a string without interpreting them as escape characters.
Loading...
Related Quiz
- When the call stack is busy, new requests get queued in the __________ for their turn to be processed.
- What is the return value when accessing a Map object's element with a non-existing key?
- What types of collections can the for...of loop iterate over in JavaScript?
- What is the syntax to export a single function from an ES6 module?
- If you are required to iterate over a collection of objects representing users and perform an action on each, how would a for...of loop benefit over other loops?