The _________ dead zone refers to the time during which a let or const variable cannot be accessed.
- temporal
- execution
- initial
- declaration
The correct option is 'initial'. The temporal dead zone occurs between the entering of the scope and the actual declaration of the variable. During this time, trying to access the variable will result in a ReferenceError. It is called the 'initial' dead zone because it happens before the variable is initialized.
Loading...
Related Quiz
- What is the correct syntax to create an instance of a class in ES6?
- What is the initial state of a JavaScript Promise when it is created?
- In a situation where you have to iterate through a complex data structure (like a tree), how can generator functions simplify the process?
- In what scenarios is it not recommended to use arrow functions in JavaScript?
- How are escape sequences like n treated in template literals?