js两种写法执行速度比较

记录

function test1(){
  this.say = function(){}

}

function test2(){
this.say = function(){}
return this;
}

 

 

console.time();
var t = new test1();
for (var i=0;i<100000;i++) {
t.say();
}
console.timeEnd()

 


console.time();
for (var i=0;i<100000;i++) {
test2().say();
}
console.timeEnd()

 

测试下来第一种方法比第二种调用的方法快了差不多6倍

 

posted @ 2018-02-24 18:11  飞尽堂前燕  阅读(241)  评论(0编辑  收藏  举报