Constant you can't change after defining
Use google
const lol = "u can't change this value after the declaration"; let lol = "u can change this value after the declaration but it must be within the scope";
once you define a variable with the const keyword, YOU cannot change the value it points to.
Обсуждают сегодня