ES6 - Reflect.has()



这是一个作为函数的 in 运算符,它返回一个布尔值,指示是否存在自己的属性或继承属性。

语法

以下是函数has()的语法,其中:

  • target 是要查找属性的目标对象。

  • propertyKey 是要检查的属性名称。

Reflect.has(target, propertyKey)

示例

以下示例使用反射创建Student类的实例,并使用Reflect.has()方法验证属性是否存在。

<script>
   class Student{
      constructor(firstName,lastName){
         this.firstName = firstName
         this.lastName = lastName
      }
      get fullName(){
         return `${this.firstName} : ${this.lastName}`
      }
   }

   const args = ['Tutorials','Point']
   const s1 = Reflect.construct(Student,args)
   console.log(Reflect.has(s1,'fullName'))
   console.log(Reflect.has(s1,'firstName'))
   console.log(Reflect.has(s1,'lastname'))
</script>

以上代码的输出如下:

true
true
false
广告