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

287 B

JavaScript-code:

let name = prompt("What is your name?", "");
alert( name );

The full page:

<!DOCTYPE html>
<html>

<body>

  <script>
    'use strict';

    let name = prompt("What is your name?", "");
    alert( name );
  </script>

</body>

</html>