Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 150 Bytes

0329.md

File metadata and controls

9 lines (8 loc) · 150 Bytes

实现一个Object.create()方法

function create(proto) {
    function F() {};
    F.prototype = proto;
    return new F();
}