en.javascript.info/1-js/02-first-steps/04-variables/1-hello-variables/solution.md
Ilya Kantor 9ad9063d00 up
2016-11-28 21:35:42 +03:00

12 lines
199 B
Markdown

In the code below, each line corresponds to the item in the task list.
```js run
let admin, name; // can declare two variables at once
name = "John";
admin = name;
alert( admin ); // "John"
```