Test name | Executions per second |
---|---|
in | 24487320.0 Ops/sec |
property | 9878447.0 Ops/sec |
var obj = { a: 5, b: 6, c: 7 };
'a' in obj;
'b' in obj;
'c' in obj;
Object.hasOwnProperty.call(obj, 'a');
Object.hasOwnProperty.call(obj, 'b');
Object.hasOwnProperty.call(obj, 'c');