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)