javascript the definitive guide 第六版第四章 77 页有这么一个例子:
4.10.2 Logical OR (||)
An idiomatic usage of this operator is to select the first truthy value in a set of alternatives:
// If max_width is defined, use that. Otherwise look for a value in the preferences object. If that is not defined use a hard-coded constant.
var max = max_width || preferences.max_width || 500;
https://s2.ax1x.com/2019/06/29/ZQiv8S.png
也就是可以利用或运算的特性,从一堆值里面选择出来第一个真值( truthy value)
但是无论是在 chrome 的 console 里运行这段代码,抑或者新建一个包含该代码的 html,都会产生出这个错误:
Uncaught ReferenceError: max_width is not defined
https://s2.ax1x.com/2019/06/29/ZQAS7n.png
变量 max 不会被成功赋值,依然是 undefined
为什么这个例子现在不能有效了呢?
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.