Dio*_*oso 3 javascript if-statement coding-style
Crockford是否有任何理由建议else statement在与花括号相同的线上使用?
if (condition) {
statements
} else {
statements
}
Run Code Online (Sandbox Code Playgroud)
它看起来比:
if(condition){
statements
}
else {
statements
}
Run Code Online (Sandbox Code Playgroud)
此外,它在逻辑上将theif和 the 联系else在一起,因此更易于阅读。