定义变量
像这样定义一个变量是否可以:
var myVariableName = (var1 > 0) ? "yay" : "nay";
或者最好将变量包装在 if 语句中:
if(var1 > 0){
var myVariableName = "yay";
}else{
var myVariableName = "nay";
}
Is it ok to define a variable like this:
var myVariableName = (var1 > 0) ? "yay" : "nay";
or is it best to wrap the varaible in the if statment:
if(var1 > 0){
var myVariableName = "yay";
}else{
var myVariableName = "nay";
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会选择
它更容易阅读。请注意,括号不是必需的。
另一种编写方式是这样的,利用布尔运算符的行为方式:
I would go with
It's easier to read. Note the parentheses aren't necessary.
Another way to write it would be like this, taking advantage of the way the boolean operators behave: