
JavaScript 使用逻辑与运算符&&比较数值
function myTest(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
myTest(10);
function myTest(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
myTest(10);
关闭