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