ingtrb.html 922 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <script>
  11. let userName3 = prompt("Введите ваше имя");
  12. let userSurname3 = prompt("Введите вашу фамилию");
  13. let userPatronymic3 = prompt("Введите ваше отчество");
  14. if (userName3 == null || " ") {
  15. userName3 = "Иван";
  16. }
  17. if (userSurname3 == null || " ") {
  18. userSurname3 = "Иванов";
  19. }
  20. if (userPatronymic3 == null || " ") {
  21. userPatronymic3 = "Иванович";
  22. }
  23. alert(userSurname3 + " " + userName3 + " " + userPatronymic3);
  24. </script>
  25. </body>
  26. </html>