将 'if' 重写为 '?'
重要性:5
使用条件运算符 '?' 重写此 if
let result;
if (a + b < 4) {
result = 'Below';
} else {
result = 'Over';
}
let result = (a + b < 4) ? 'Below' : 'Over';
使用条件运算符 '?' 重写此 if
let result;
if (a + b < 4) {
result = 'Below';
} else {
result = 'Over';
}
let result = (a + b < 4) ? 'Below' : 'Over';