QuestenaPractice that shows what to review next
Question 90

Which declaration is invalid specifically because a const binding lacks an initializer?

  1. let total
  2. const totalCorrect answer
  3. let total = 0
  4. const total = 0

Explanation

A const declaration must establish its value as part of the declaration, so writing const total without an initializer is invalid. A let declaration may omit its initializer, making the claim that both forms have the same requirement incorrect.

Continue with this test

Start practice
Question 90: Which declaration is invalid specifically because a const… · JavaScript Fundamentals · Questena