en.javascript.info/1-js/4-object-basics/01-object/4-const-object/task.md
Ilya Kantor 0818e61927 ok
2016-08-25 17:35:33 +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";
*/!*