Comparison with the Greater Than Operator
Summary
- The greater than operator (
>
) compares the values of two numbers for the larger number. - If the number to the left is greater than the number to the right, it returns
true
. Otherwise, it returnsfalse
.
Final Code
function testGreaterThan(val) {
if (val > 100) { // Change this line
return "Over 100";
}
if (val > 10) { // Change this line
return "Over 10";
}
return "10 or Under";
}
testGreaterThan(10);