en.javascript.info/1-js/2-first-steps/04-variables/1-hello-variables/solution.md
2016-07-20 17:28:12 +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"