Q
How does hoisting affect const declarations in JavaScript?

Answer & Solution

Answer: Option B
Solution:
Hoisting moves const declarations to the top, but they cannot be accessed before their declaration due to the Temporal Dead Zone (TDZ).
Related Questions on Average

How does hoisting affect arrow functions in JavaScript?

A). A. Arrow functions are hoisted with their function bodies

B). B. Arrow functions are hoisted but cannot be accessed before declaration

C). C. Arrow functions are not hoisted

D). D. Hoisting has no effect on arrow functions

What happens if you declare a const variable with the same name as an existing variable in JavaScript?

A). A. SyntaxError is thrown

B). B. The existing variable is reassigned

C). C. ReferenceError is thrown

D). D. TypeError is thrown

What is the behavior of accessing a const variable before its declaration in a nested block in JavaScript?

A). A. ReferenceError is thrown

B). B. SyntaxError is thrown

C). C. undefined is printed

D). D. No error

What is the result of the following code snippet?

A). A. SyntaxError

B). B. ReferenceError

C). C. TypeError

D). D. No error

What is the behavior of accessing a var variable within a block before its declaration in JavaScript?

A). A. ReferenceError is thrown

B). B. SyntaxError is thrown

C). C. undefined is printed

D). D. No error

What happens if you try to reassign a const variable in JavaScript?

A). A. No effect on the variable

B). B. SyntaxError is thrown

C). C. ReferenceError is thrown

D). D. TypeError is thrown

Which of the following is true about const variables in JavaScript?

A). A. They can be reassigned after declaration

B). B. They can be accessed before declaration

C). C. They cannot be declared without an initial value

D). D. They cannot be hoisted

What is the output of the following code snippet?

A). A. TypeError

B). B. 10

C). C. undefined

D). D. SyntaxError

What is hoisting in JavaScript?

A). A. A process of lifting heavy objects

B). B. Moving variable and function declarations to the top of their scope

C). C. Reducing code size

D). D. None of the above

What is the behavior of accessing a let variable before its declaration in JavaScript?

A). A. SyntaxError

B). B. ReferenceError

C). C. undefined

D). D. No error