In this program, you will take 2 inputs from users using a window prompt, and you will find the largest number.
<!DOCTYPE html>
<html>
<body>
<script>
function Largest2No() {
var n1,n2;
n1 = parseInt(prompt("enter first number:"));
n2 = parseInt(prompt("enter second number:"));
if(n1>n2)
{
document.write(n1+" is Largest number");
}
else
{
document.write(n2+" is Largest number");
}
}
</script>
<form>
<input type="button" value="LargestNo" onclick="Largest2No()" />
</form>
</body>
</html>
Input has taken through javascript prompt method
enter first number:14 enter second number:12 14 is Largest number
'LargestNo'
button, the Largest2No()
function will get called.Largest2No()
function, Take two numbers from the user and stored them in n1
and n2
. n1
and n2
by using the if statement i.e if(n1>n2){ }
, if n1
is greater than n2
then if statement will get executed. and you will print "n1 is the largest number".n1
is less than n2
then else part will get executed and hence you will print "n2 is the largest number".