What is the output of the following code?
for (const i=0; i<3; i++) { console.log(i); }
TypeError: Assignment to constant variable (due to i++)
In the case of const, the initial assigned value to a const variable will not change again.