en.javascript.info/1-js/4-data-structures/4-object/1-hello-object/task.md
2015-01-11 01:54:57 +03:00

13 lines
581 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Первый объект
[importance 3]
Мини-задача на синтаксис объектов. Напишите код, по строке на каждое действие.
<ol>
<li>Создайте пустой объект `user`.</li>
<li>Добавьте свойство `name` со значением `Вася`.</li>
<li>Добавьте свойство `surname` со значением `Петров`.</li>
<li>Поменяйте значение `name` на `Сергей`.</li>
<li>Удалите свойство `name` из объекта.</li>
</ol>