Which statement correctly relates a const binding's scope to an ordinary block?
Explanation
A const declaration is lexical and therefore belongs to the block containing it, including nested scopes. Its special restriction concerns rebinding, not a wider scope, so const does not become function-scoped merely because its value cannot be reassigned.