Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 154 Bytes

object.create.md

File metadata and controls

12 lines (9 loc) · 154 Bytes

Object.create

将传入的对象作为原型

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