en.javascript.info/1-js/04-object-basics/01-object/4-const-object/task.md
Ilya Kantor 9ad9063d00 up
2016-11-28 21:35:42 +03:00

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";
*/!*