首页 > 移动平台 > 详细

What is happening in Crockford's object creation technique?

时间:2014-07-30 20:30:45      阅读:386      评论:0      收藏:0      [点我收藏+]

 

 

What is happening in Crockford‘s object creation technique?

http://stackoverflow.com/questions/2766057/what-is-happening-in-crockfords-object-creation-technique

 

//创建对象
    if (typeof Object.create !== "function") {
        Object.create = (function () {
            function F() {} // created only once
            return function (o) {
                F.prototype = o; // reused on each invocation
                return new F();
            };
        })();
    }

 

What is happening in Crockford's object creation technique?,布布扣,bubuko.com

What is happening in Crockford's object creation technique?

原文:http://www.cnblogs.com/didi/p/3878708.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!