Programming Examples
Java script function max to find largest number
Define a function max() that takes two numbers as arguments and returns the largest of them. Use the if-then-else construct available in Javascript.Â
Solution
<!DOCTYPE html>
<html>
<head>
<title>Square and Qube of Number</title>
<script language="javascript">
function max(a,b)
{
if(a>b)
{
return a;
}
else
{
return b;
}
}
</script>
</head>
<body>
<script language="javascript">
var a,b,c;
a=parseInt(prompt("Enter First No"));
b=parseInt(prompt("Enter Second No"));
c=max(a,b);
alert("largest No is "+c);
</script>
</body>
</html>
Output