码迷,mamicode.com
首页 > 其他好文 > 详细

学习笔记

时间:2014-04-29 11:41:46      阅读:427      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   color   io   

今天发现一个小技巧,计算执行一段代码所需的时间(精确到毫秒),此段代码也显示了尽量少用with

mamicode.com,码迷
//取值与赋值 10000
function noWith(){
    var obj = a.a.a.a.a.a.a, i=100000, j = 0;
    for(; i; i--){
        j = obj.b;
        obj.b = i;
    }
}

//取值与赋值 10000
function yesWith(){
    var i=100000, j = 0;
    with( a.a.a.a.a.a.a ){
        for(; i; i--){
            j = b;
            b = i;
        }
    }
}


var t = new Date().getTime();
//noWith();
noWith();
cc.log(new Date().getTime() - t);
mamicode.com,码迷

 

学习笔记,码迷,mamicode.com

学习笔记

标签:style   blog   http   java   color   io   

原文地址:http://www.cnblogs.com/rhythm2014/p/3698790.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!