Réponse

let daysPerWeek = 6;
daysPerWeek = 7;

Colonne
Explication

I declare the variable daysPerWeek and initialize it with the value 6. Then, I reassign it the value 7 (without the let keyword, as the variable has already been declared).

Question

syntax - declare a daysPerWeek variable and initialize it with the value 6, then reassign it 7

Thématique