function Ticket(id) {
this._id = id;
}
var testTicket = new Ticket(1);
var count = 1000;
for (var i = 0; i < count; i += 1) {
if (testTicket instanceof Ticket) {
continue;
}
}
for (var i = 0; i < count; i += 1) {
if (testTicket.constructor === Ticket) {
continue;
}
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
instanceof check | |
constructor check |
Test name | Executions per second |
---|---|
instanceof check | 422278.8 Ops/sec |
constructor check | 519055.8 Ops/sec |
In the provided benchmark, we are comparing three approaches to checking the type of an object in JavaScript: using instanceof
, using the .constructor
property, and through the use of typeof
. However, the individual test cases only include comparisons between instanceof
and .constructor
.
instanceof
Check:
for (var i = 0; i < count; i += 1) {
if (testTicket instanceof Ticket) {
continue;
}
}
This test leverages the instanceof
operator, which checks whether the prototype property of a constructor appears in the prototype chain of an object. In this case, it checks if testTicket
is an instance of the Ticket
function.
Constructor Check:
for (var i = 0; i < count; i += 1) {
if (testTicket.constructor === Ticket) {
continue;
}
}
This test uses the .constructor
property of the object, which directly references the function that created the object (in this case, it checks if testTicket.constructor
is equal to the Ticket
constructor).
instanceof
:
Ticket
, instanceof
will still correctly identify them as instances of Ticket
.Constructor Check:
From the benchmark results provided, we can see the following execution rates:
constructor check
: 519,055.81 executions per secondinstanceof check
: 422,278.75 executions per secondThis indicates that the constructor check performed better than the instanceof
check in this specific environment and configuration. It might suggest that for this particular test, the constructor check is the optimal approach for speed when you know the structure of your code won't change.
Type Checking Alternatives: Beyond instanceof
and .constructor
, there is also typeof
. However, it's primarily for checking the types of primitive data types (like strings, numbers, etc.) rather than checking the type of a user-defined object.
Libraries for Type Checking: There are libraries (like lodash
and underscore
) that offer utility functions for more complex type checks, including _.isEqual
or _.isObject
, that can provide additional insights or capabilities.
Performance Context: It's essential to consider that performance can vary across environments (different browsers, different devices, etc.), so benchmarks should be interpreted in the context of where the code is intended to run.
In conclusion, the instanceof
and constructor checks provide complementary approaches to type verification in JavaScript. Each has its benefits depending on the context of its use, making it valuable for developers to understand these distinctions when optimizing code.