这是作为函数的 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
相关用法
- ES6 Reflect.set()用法及代码示例
- ES6 Reflect.construct()用法及代码示例
- ES6 Reflect.apply()用法及代码示例
- ES6 Reflect.get()用法及代码示例
- ES6 RegExp split()用法及代码示例
- ES6 RegExp replace()用法及代码示例
- ES6 RegExp exec()用法及代码示例
- ES6 RegExp test()用法及代码示例
- ES6 RegExp toString()用法及代码示例
- ES6 RegExp search()用法及代码示例
- ES6 Array every()用法及代码示例
- ES6 Array reduceRight()用法及代码示例
- ES6 handler.set()用法及代码示例
注:本文由纯净天空筛选整理自 ES6 - Reflect.has()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。