The lesson / transcript says:
“JavaScript is a dynamically typed language, meaning you don’t need to specify the data type of a variable when you declare it. Instead, the type is determined based on the value assigned to the variable while the program is running. This allows you to change the type of a variable throughout the program.”
It then gives an example of a let variable being re-assigned. Should there by some mention of the const variable in this lesson to the effect that re-assigning it would throw an error?