Reflect.has()
Reflect.has()
静态方法类似于 in
运算符,但作为一个函数。
¥The Reflect.has()
static method is like the in
operator, but
as a function.
Try it
语法
参数
返回值
例外情况
描述
¥Description
Reflect.has()
提供检查属性是否在对象中的反射语义。也就是说,Reflect.has(target, propertyKey)
在语义上等同于:
¥Reflect.has()
provides the reflective semantic of checking if a property is in an object. That is, Reflect.has(target, propertyKey)
is semantically equivalent to:
js
propertyKey in target;
Reflect.has()
调用 target
的 [[HasProperty]]
对象内部方法。
¥Reflect.has()
invokes the [[HasProperty]]
object internal method of target
.
示例
使用 Reflect.has()
¥Using Reflect.has()
js
Reflect.has({ x: 0 }, "x"); // true
Reflect.has({ x: 0 }, "y"); // false
// returns true for properties in the prototype chain
Reflect.has({ x: 0 }, "toString");
// Proxy with .has() handler method
obj = new Proxy(
{},
{
has(t, k) {
return k.startsWith("door");
},
},
);
Reflect.has(obj, "doorbell"); // true
Reflect.has(obj, "dormitory"); // false
对于任何继承的属性,Reflect.has
返回 true
,例如 in
运算符:
¥Reflect.has
returns true
for any inherited properties, like the in
operator:
js
const a = { foo: 123 };
const b = { __proto__: a };
const c = { __proto__: b };
// The prototype chain is: c -> b -> a
Reflect.has(c, "foo"); // true
规范
Specification |
---|
ECMAScript Language Specification # sec-reflect.has |
浏览器兼容性
BCD tables only load in the browser