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

239 B

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").