en.javascript.info/1-js/01-getting-started/03-variables/1-hello-variables/task.md
Ilya Kantor 06cdd5b84a taskui
2020-11-21 20:38:22 +03:00

10 lines
239 B
Markdown

importance: 2
---
# Working with variables
1. Declare two variables: `admin` and `name`.
2. Assign the value `"John"` to `name`.
3. Copy the value from `name` to `admin`.
4. Show the value of `admin` using `alert` (must output "John").