How are escape sequences like n treated in template literals?
- Treated as a newline character
- Ignored
- Treated as a literal backslash followed by 'n'
- Throws an error
In template literals, escape sequences like n are treated as newline characters. This allows for multi-line strings without the need for explicit line break characters.
Loading...
Related Quiz
- In Promises, the _______ function is used to transition a promise into a resolved state, while _______ is used for rejection.
- What happens when undefined is passed to a function with a default parameter?
- How does method definition in ES6 classes affect the prototype chain?
- Consider a web application where you need to apply multiple transformations to user input. How would functional composition enhance this process?
- What is a key difference between a JavaScript Object and a Map?