QuestenaPractice that shows what to review next
Question 87

A var declaration appears inside an if block that is itself inside a function. Which statements are true? Select all that apply.

  1. The binding belongs to the containing function scopeCorrect answer
  2. The binding is accessible directly outside the containing function
  3. Code later in the same function can use it after the assignment executesCorrect answer
  4. The binding ceases to exist as soon as the if block ends

Explanation

Within a function, var belongs to that function's scope rather than to the inner if block. Once normal execution has performed its assignment, code later in the same function can use the binding, but code outside the function cannot access it directly.

Continue with this test

Start practice
Question 87: A var declaration appears inside an if block that is itself… · JavaScript Fundamentals · Questena