This tutorial’s page is not running the test. Tried resetting the code several times. Also tried with my phone and still won’t run the test. Was having some similar issues in the lessons before this one. But managed to run the test on those. Not this one. (Won’t be able to advance until it’s figured out)
Your code so far
function testLogicalAnd(val) {
// Only change code below this line
if (val <= 50 && val >= 25) {
return "Yes";
}
}
// Only change code above this line
return "No";
}
// Change this value to test
testLogicalAnd(10);
Your browser information:
User Agent is: Mozilla/5.0 (X11; CrOS x86_64 10575.58.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36.
Here’s my code. The syntax is fine, but the test button isn’t working, again.
function testLogicalAnd(val) {
// Only change code below this line
if (val <= 50 && >= 25) {
return "Yes";
}
// Only change code above this line
return "No";
}
// Change this value to test
testLogicalAnd(10);