Q
How does hoisting affect variable shadowing in JavaScript?

Answer & Solution

Answer: Option B
Solution:
Hoisting prevents variables with the same name in different scopes from coexisting, a concept known as variable shadowing.
Related Questions on Average

What is the output of the following code snippet?

A). A. TypeError

B). B. 10

C). C. undefined

D). D. SyntaxError

How can you ensure that a const variable is initialized before use in JavaScript?

A). A. Use let instead of const for all variables

B). B. Declare const variables at the top of their scope

C). C. Assign a default value to const variables

D). D. None of the above

What happens if you access a var variable before its declaration in JavaScript?

A). A. ReferenceError

B). B. TypeError

C). C. undefined

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

What is the purpose of the Temporal Dead Zone (TDZ) in JavaScript?

A). A. To prevent variable reassignment

B). B. To catch errors at compile time

C). C. To ensure variables are initialized before use

D). D. To reduce memory usage

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 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

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

Which keyword allows hoisting of variables in JavaScript?

A). A. var

B). B. let

C). C. const

D). D. Both A and B