私は次のクラスを持っています:
var myclass = (function(){
var b={};
b.method1 = function(){
console.log("method1");
};
b.method2 = function class2(){
console.log("method2");
};
return b;
}());
method1
method1 に割り当てられた無名関数でmethod2
あり、名前付き関数であること以外に、これらのメソッド間に違いはありますか?
私は通常 method1 の方法を使用しますが、メソッド宣言の method2 を発見するだけです。
そして、一方を他方よりも使用する利点はありますか?