Full Stack curriculum data types

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?

if you think this is something that should be added you can create a github issue about it

I will do. It’s not a major thing but thought for completeness they may want to clarify that.