en.javascript.info/1-js/01-getting-started/03-variables/1-hello-variables/solution.md
Ilya Kantor 06cdd5b84a taskui
2020-11-21 20:38:22 +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"