How to Check if a Key is in the Object
there are many methods.
in
Operator
The
in
operator returnstrue
if the specified property is in the specified object or its prototype chain.
how to use?
for example:
attention: the attribute name should be string.
that is to say:
- a in dict ❎
- “a” in dict ✅
Object API: hasOwnProperty
Object.prototype.hasOwnProperty() - JavaScript | MDN
The complete expression is Object.prototype.hasOwnProperty()
.
how to use it ?
the same is the attribute key should be a string.
- a in dict ❎
- “a” in dict ✅