Test name | Executions per second |
---|---|
typeof | 92426568.0 Ops/sec |
hasOwn | 44112912.0 Ops/sec |
hasOwnProperty | 52639972.0 Ops/sec |
var obj = { a: 1, b: 2, c: 3, d: 4, e: 5 };
typeof obj.d !== "undefined";
Object.hasOwn(obj, 'd')
obj.hasOwnProperty( 'd' );