/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/html/code-414-111-001/main.html
27 строк
629 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="ru"> <head> <meta charset="UTF-8"> <title>Debug Practice</title> </head> <body> <button id="clickme">Нажми меня</button> <p id="output"></p> <script> function sayHello(name) { const age = 25; const message = `Привет, ${name}! Тебе ${age} лет.`; document.getElementById('output').textContent = message; return message; } document.getElementById('clickme').addEventListener('click', () => { const name = prompt('Как вас зовут?'); if (name) { sayHello(name); } }); </script> </body> </html>