JavaScript がこのように ("randomword: function(){}" を使用して) 記述されているのを見たことがありません。この" randomword : 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() {
},