JS

JavaScript ES6 - Constants block-scoped variables

9.

What is a valid statement about constants in JavaScript ES6?

Constants are automatically initialized with a value of undefined.

Constants, once declared, do not have a fixed value.

Constants are block-scoped variables.

Constants can be redeclared and updated.