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

10 lines
110 B
Markdown

```js
let user = {};
user.name = "John";
user.surname = "Smith";
user.name = "Pete";
delete user.name;
```