You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
583 B
JavaScript

var num1, num2;
num1 = window.prompt("Input the First integer", "0");
num2 = window.prompt("Input the second integer", "0");
if(parseInt(num1, 10) > parseInt(num2, 10))
{
console.log("The larger of "+ num1+ " and "+ num2+ " is "+ num1+ ".");
}
else
if(parseInt(num2, 10) > parseInt(num1, 10))
{
console.log("The larger of "+ num1+" and "+ num2+ " is "+ num2+ ".");
}
else
{
console.log("The values "+ num1+ " and "+num2+ " are equal.");
}