en.javascript.info/1-js/2-first-steps/05-variables/1-hello-variables/solution.md
Ilya Kantor 88bd9889a2 work
2016-05-26 12:43:54 +03:00

199 B

In the code below, each line corresponds to the item in the task list.

let admin, name; // can declare two variables at once

name = "John";

admin = name;

alert( admin ); // "John"