What is happening in Crockford's object creation technique?

时间:2014-07-30 20:30:45   收藏:0   阅读:387

 

 

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

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

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!