var obj = { a: 1, b: 2, c: 3, d: 4, e: 5 };
typeof obj.d !== "undefined";
Object.hasOwn(obj, 'd')
obj.hasOwnProperty( 'd' );
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
typeof | |
hasOwn | |
hasOwnProperty |
Test name | Executions per second |
---|---|
typeof | 92426568.0 Ops/sec |
hasOwn | 44112912.0 Ops/sec |
hasOwnProperty | 52639972.0 Ops/sec |
Let's break down the provided benchmark and explain what is being tested, compared options, pros and cons of each approach, and other considerations.
What is being tested?
The benchmark is testing the performance of three different methods for checking if a property exists in an object:
typeof
operatorObject.hasOwn()
methodobj.hasOwnProperty()
methodEach method checks if the property "d" exists in the object created by the script preparation code.
Options compared
The benchmark is comparing the performance of these three methods:
typeof
: Returns a string indicating the type of the value (in this case, "undefined" for properties that don't exist).Object.hasOwn()
: A method that checks if an object has a property with the specified name.obj.hasOwnProperty()
: A method that checks if an object has a property with the specified name.Pros and cons of each approach
typeof
operator:Object.hasOwn()
method:typeof
.hasOwnProperty()
property of the object, which might incur a small overhead.Other considerations
Object.hasOwn()
and obj.hasOwnProperty()
methods can be slower than typeof
because they involve checking if an object has a certain property.Library used
None of the test cases use any external libraries. They only rely on built-in JavaScript features and objects.
Special JS feature or syntax
There is no special JavaScript feature or syntax being tested in this benchmark. It's a straightforward comparison of three simple methods for checking property existence.
If you're interested in exploring other benchmarking options, here are some alternatives: