码迷,mamicode.com
首页 > 其他好文 > 详细

Object.create()方法的实现

时间:2021-04-29 11:58:29      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:函数   prototype   writable   console   设置   bsp   size   属性   prot   

Object.create()方法的实现

Object.create()方法用于创建一个新对象并将这个新对象的[[Prototype]]设置为特定的对象。另外,Object.create()方法还有一个可选的参数propertiesObject,这个参数类似于Object.defineProperties()方法的第二个参数,指定了将要添加到新对象中的属性和属性的各个特性。在实现Object.create()方法时要注意确保第一个参数是非空的对象。另外,如果第二个参数不是undefined,同样要确保它是非空的对象。

 

 1 const myObjectCreate = function (proto, propertiesObject) {
 2     if (typeof proto !== "object" && typeof proto !== "function") {
 3         throw new TypeError("The prototype must be a object");
 4     } else if (proto === null) {
 5         throw new TypeError("The prototype cannot be null");
 6     }
 7 
 8     // 创建构造函数,并将构造函数的原型对象设置为proto
 9     const F = function () {};
10     F.prototype = proto;
11 
12     // 创建新对象
13     let obj = new F();
14 
15     if (propertiesObject && typeof propertiesObject === "object") {
16         Object.defineProperties(obj, propertiesObject);
17     }
18 
19     return obj;
20 }
21 
22 let person = myObjectCreate({name : "Alex"}, {
23     age : {
24         writable : false,
25         enumerable : true,
26         value : 18
27     }
28 });
29 console.log(person.name, person.age); // Alex 18

 

Object.create()方法的实现

标签:函数   prototype   writable   console   设置   bsp   size   属性   prot   

原文地址:https://www.cnblogs.com/ccpeng/p/14715480.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!