| Test case name | Result |
|---|---|
| undefined !== nullObject[key] | |
| "undefined" !== typeof nullObject[key] | |
| key in nullObject | |
| !!nullObject[key] | |
| Object.hasOwn(nullObject, key) | |
| Object.prototype.hasOwnProperty.call(nullObject, key) | |
| Object.hasOwn(normalObject, key) | |
| normalObject.hasOwnProperty(key) | |
| map.has(key) |
This benchmark does not have any results yet. Be the first one to run it!