en.javascript.info/1-js/04-object-basics/01-object/4-const-object/task.md
2018-10-24 23:15:11 +08:00

209 B

importance: 5


Constant objects?

Is it possible to change an object declared with const? What do you think?

const user = {
  name: "John"
};

*!*
// does it work?
user.name = "Pete";
*/!*