const
const apple = 5;
apple = 10; // ошибкаconst user = {
name: "Вася"
};
user.name = "Петя"; // допустимо
user = 5; // нельзя, будет ошибкаLast updated
const apple = 5;
apple = 10; // ошибкаconst user = {
name: "Вася"
};
user.name = "Петя"; // допустимо
user = 5; // нельзя, будет ошибкаLast updated