208 B
208 B
importance: 5
Constant objects?
Is it possible to change an object declared with const
, how do you think?
const user = {
name: "John"
};
*!*
// does it work?
user.name = "Pete";
*/!*