Create a function that compares two numbers.
Return string "true" if num2 is greater than num1, otherwise return "false".
If the parameter values are equal, return string "-1".
function checkNumbers(num1, num2) { //your code here } // Output//from w ww . j av a 2s . co m console.log(checkNumbers(1, 2)); // => "True" console.log(checkNumbers(2, 1)); // => "False" console.log(checkNumbers(1, 1));
function checkNumbers(num1, num2) { if (num1 === num2) { return "-1"; } else { return ((num2 > num1) ? "True" : "False"); } } // Output console.log(checkNumbers(1, 2)); // => "True" console.log(checkNumbers(2, 1)); // => "False" console.log(checkNumbers(1, 1)); // => "-1"