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

get/set

时间:2018-01-01 11:26:02      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:get   error:   new   ring   var   原函数   comment   const   function   

const obj = {
  get foo() {},
  set foo(x) {}
};

obj.foo.name
// TypeError: Cannot read property ‘name‘ of undefined

const descriptor = Object.getOwnPropertyDescriptor(obj, ‘foo‘);

descriptor.get.name // "get foo"
descriptor.set.name // "set foo"


有两种特殊情况:bind方法创造的函数,name属性返回bound加上原函数的名字;Function构造函数创造的函数,name属性返回anonymous

(new Function()).name // "anonymous"

var doSomething = function() {
  // ...
};
doSomething.bind().name // "bound doSomething"
 

get/set

标签:get   error:   new   ring   var   原函数   comment   const   function   

原文地址:https://www.cnblogs.com/justart/p/8166091.html

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