Test name | Executions per second |
---|---|
Object.prototype.hasOwnProperty | 7674891.5 Ops/sec |
obj.hasOwnProperty | 15266081.0 Ops/sec |
Object.hasOwn | 7722161.5 Ops/sec |
in obj | 16075945.0 Ops/sec |
obj = {a: 42, b:66, c: 88}
Object.prototype.hasOwnProperty.call(obj, 'b');
obj.hasOwnProperty('b');
Object.hasOwn(obj, 'b')
'b' in obj