if
语句与else if
语句链接在一起。 if(num> 15){
返回“大于15”;
} else if(num <5){
返回“小于5”;
} else {
返回“5到15之间”;
}
else if
语句。 else
语句
testString: assert(code.match(/else/g).length > 1);
- text: 你应该至少有两个if
语句
testString: assert(code.match(/if/g).length > 1);
- text: 您应该为每个条件关闭并打开花括号
testString: assert(code.match(/if\s*\((.+)\)\s*\{[\s\S]+\}\s*else if\s*\((.+)\)\s*\{[\s\S]+\}\s*else\s*\{[\s\S]+\s*\}/));
- text: testElseIf(0)
应返回“小于5”
testString: assert(testElseIf(0) === "Smaller than 5");
- text: testElseIf(5)
应该返回“5到10之间”
testString: assert(testElseIf(5) === "Between 5 and 10");
- text: testElseIf(7)
应返回“5到10之间”
testString: assert(testElseIf(7) === "Between 5 and 10");
- text: testElseIf(10)
应返回“5到10之间”
testString: assert(testElseIf(10) === "Between 5 and 10");
- text: testElseIf(12)
应返回“大于10”
testString: assert(testElseIf(12) === "Greater than 10");
```