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.
Loading...
Related Quiz
- What is the primary purpose of the spread operator in ES6?
- How do you handle errors when using Promises with AJAX requests?
- Asynchronous callbacks are placed in a queue known as the __________ queue.
- A function that takes another function as an argument is called a __________ function.
- How do prototype delegation and proto property in ES6 object literals work?