JScript 是否提供三元运算符?
Jscript(与 JavaScript 相对)中有三元运算符吗?如果是这样,语法是什么?
Do we have a ternary operator in Jscript (as opposed to JavaScript)? If so, what is the syntax?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
它
就像 C 一样。实际上,它有点宽松,因为 JavaScript 不是强类型的。因此,运算符的两个可能的“分叉”可能会产生不同类型的值。
因此:
大多数时候,微软的 ECMAScript 和其他浏览器(或其他服务器端环境)中的差异并不是那么大,并且对于普通的非 DOM 代码来说,很少需要处理这样的事情。
It's
just like C. It's a little looser, actually, because JavaScript is not strongly-typed. Thus the two possible "forks" of the operator can result in different types of values.
Thus:
Most of the time, the differences between Microsoft's ECMAScript and those found in other browsers (or other server-side environments) aren't really that great, and for ordinary non-DOM code it's pretty rare to have to deal with such things.
是的确实如此。
yes it does.
例子:
Example:
您也可以随时使用谷歌来查找语言语法。
我得到的第一个结果是 http:// msdn.microsoft.com/en-us/library/be21c7hw%28v=vs.85%29.aspx。它有这样的例子
You can always use google to find language syntax, too.
The first result I got was, http://msdn.microsoft.com/en-us/library/be21c7hw%28v=vs.85%29.aspx. It has examples like