Hey, I can’t get this to work. Can you see the mistake?
Your code so far
function testLogicalOr(val) {
// Only change code below this line
if ( val < 20 || val > 10);{
// Only change code above this line
return "Outside";
}
return "Inside";
}
// Change this value to test
testLogicalOr(10);
Your browser information:
Your Browser User Agent is: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36
.
Link to the challenge:
https://www.freecodecamp.org/challenges/comparisons-with-the-logical-or-operator