我使用多次引用 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();
}