我从未见过以这种方式编写的 JavaScript(带有“随机词:function(){}”)。这个“随机词:函数(){}”语法实际上是做什么的?这是ECMA标准的JS吗?
下面是 codiqa.ext.js 的摘录:
init: function() {
for(var type in this.types) {
this.types[type].prototype.initType();
}
},
refresh: function() {
for(var x in this.instances) {
this.instances[x].refresh && this.instances[x].refresh();
}
},
callbackInit: function() {
},