<html>
<head>
</head>
<body>
<h1>Hello User</h1>
<h2> This is the softhunt.net</h2>
<script>
function showData(name, amt) {
alert(' Hello ' + name + '
Your entered amount is ' + amt);
}
function getData(callback) {
var name = prompt(" Welcome to the softhunt.net
What is your name?");
var amt = prompt(" Enter some amount...");
callback(name, amt);
}
getData(showData);
</script>
</body>
</html>