
JavaScript 小于等于比较运算符<=
function myTest(val) {
if (val<=12) {// Change this line
return "Smaller Than or Equal to 12";
}
if (val<=24) {// Change this line
return "Smaller Than or Equal to 24";
}
return "25 or More";
}
// Change this value to test
myTest(10);