When using const to declare a variable, what type of assignment is mandatory?

  • Reassignment
  • Initialization
  • Increment
  • Declaration
When you declare a variable with const, you must initialize it with a value. const variables cannot be declared without an initial value, and they cannot be reassigned to a different value after initialization.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *