INDEX-HTML

What is happening in Crockford's object creation technique?

 

 

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();
            };
        })();
    }

 

posted @ 2014-07-30 18:12  sudo!!  阅读(240)  评论(0)    收藏  举报