function hello() { var name = prompt('Назовите Ваше имя'); // пользователь вводит своё имя return "Привет, " + name + "!"; } alert(hello());