Hi,
I am in this challenge: https://www.freecodecamp.com/challenges/comparison-with-the-greater-than-operator
I wonder what is wrong with my code.
function testGreaterThan(val) {
if (101 > 100) { // Change this line
return “Over 100”;
}
if (11 > 10) { // Change this line
return “Over 10”;
}
return “10 or Under”;
}
// Change this value to test
testGreaterThan(10);