Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我发现全局变量 Ext 在源代码中是这样定义的:
var Ext = Ext || {};
我想知道是否有必要这样做,而且,我认为如果将其定义为
var Ext = {};
有人可以告诉我原因吗?
原因是 - 第一个定义新对象以防它尚不存在。
第二个 - 总是创建新对象。