Which declaration is invalid specifically because a const binding lacks an initializer?
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.