を使用して JavaScript オブジェクトを複数回参照する場所this
var myObj = {
method1 : function() {},
method2 : function() {},
method3 : function {},
init : function() {
this.method1();
this.method2();
this.method3();
}
};
パフォーマンスの向上はありthis
ますか?変数に格納する必要がありますか? お気に入り:
init : function() {
var self = this;
self.method1();
self.method2();
self.method3();
}