if/else语句串联在一起可以实现复杂的逻辑,这是多个if/else if语句串联在一起的伪代码:
```js
if (condition1) {
statement1
} else if (condition2) {
statement2
} else if (condition3) {
statement3
. . .
} else {
statementN
}
```
if/else if语句串联起来实现下面的逻辑:
num < 5- return "Tiny"num < 10- return "Small"num < 15- return "Medium"num < 20- return "Large"num >= 20 - return "Huge"
else表达式。
testString: assert(code.match(/else/g).length > 3);
- text: 你应该有至少 4 个if表达式。
testString: assert(code.match(/if/g).length > 3);
- text: 你应该有至少 1 个return表达式。
testString: assert(code.match(/return/g).length >= 1);
- text: testSize(0)应该返回 "Tiny"。
testString: assert(testSize(0) === "Tiny");
- text: testSize(4)应该返回 "Tiny"。
testString: assert(testSize(4) === "Tiny");
- text: testSize(5)应该返回 "Small"。
testString: assert(testSize(5) === "Small");
- text: testSize(8)应该返回 "Small"。
testString: assert(testSize(8) === "Small");
- text: testSize(10)应该返回 "Medium"。
testString: assert(testSize(10) === "Medium");
- text: testSize(14)应该返回 "Medium"。
testString: assert(testSize(14) === "Medium");
- text: testSize(15)应该返回 "Large"。
testString: assert(testSize(15) === "Large");
- text: testSize(17)应该返回 "Large"。
testString: assert(testSize(17) === "Large");
- text: testSize(20)应该返回 "Huge"。
testString: assert(testSize(20) === "Huge");
- text: testSize(25)应该返回 "Huge"。
testString: assert(testSize(25) === "Huge");
```