Template literals are enclosed by ________ characters.
- Single backtick (`)
- Double quotes (")
- Single quotes (')
- Dollar sign ($)
Template literals in ES6 are enclosed by backticks (`). This allows for easy embedding of variables and expressions using ${}.
Loading...
Related Quiz
- What happens if an error is thrown inside a .then() block in Promise chaining?
- How would you use a for...of loop to iterate over a string?
- Q1: Imagine you are creating a caching mechanism for a web application. Would you choose a WeakMap or a Map for storing cached data and why?
- To override a static method in a subclass, you need to use the same method name and the _________ keyword.
- What is a key difference in how forEach and map handle array elements?