class Base {
constructor() {
this.a = 123;
}
doSomething() {
console.log(this.a);
}
}
class Extender extends Base {
constructor() {
super();
this.b = 345;
}
}
const objBase = new Base();
const objExt = new Extender();
objBase instanceof Base
objExt instanceof Base
objBase instanceof Extender
objExt instanceof Extender
!!objBase.b
!!objExt.b
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
base instanceof Base | |
extender instanceof Base | |
base instanceof Extender | |
extender instanceof Extender | |
objBase check property | |
objExtender check property |
Test name | Executions per second |
---|---|
base instanceof Base | 113808528.0 Ops/sec |
extender instanceof Base | 115179872.0 Ops/sec |
base instanceof Extender | 118679016.0 Ops/sec |
extender instanceof Extender | 127838376.0 Ops/sec |
objBase check property | 123774040.0 Ops/sec |
objExtender check property | 113899272.0 Ops/sec |
In the benchmark titled "instanceof vs manual checking," various methods for determining an object's type in JavaScript are compared: using the instanceof
operator versus manually checking for the existence of a known property.
The benchmark tests the following scenarios:
objBase instanceof Base
: Checks if objBase
, an instance of the Base
class, is an instance of Base
.objExt instanceof Base
: Checks if objExt
, an instance of the Extender
class (which inherits from Base
), is an instance of Base
.objBase instanceof Extender
: Checks if objBase
is an instance of Extender
.objExt instanceof Extender
: Confirms that objExt
is indeed an instance of Extender
.!!objBase.b
: Checks for the existence of property b
on objBase
, which should be undefined
.!!objExt.b
: Checks for the existence of property b
on objExt
, which should return true
since objExt
is initialized with b
.The benchmark results show the number of executions per second for each test case. A higher number indicates better performance:
extender instanceof Extender
: 127,838,376 executions/secobjBase check property
: 123,774,040 executions/secbase instanceof Extender
: 118,679,016 executions/secextender instanceof Base
: 115,179,872 executions/secobjExtender check property
: 113,899,272 executions/secbase instanceof Base
: 113,808,528 executions/secUsing instanceof
Operator:
Manual Property Check (using !!
):
This benchmark does not utilize any external libraries. It purely demonstrates JavaScript's built-in behavior regarding object-oriented programming and type-checking.
instanceof
, while quick property existence checks might favor manual checks.Object.prototype.toString.call()
: Useful for checking types more broadly (arrays, dates, etc.) compared to instanceof
.isInstance()
(React and similar libraries): React sometimes includes helper functions to simplify and enhance type checks in the component model.This benchmark provides insights into performance nuances when deciding between traditional instanceof
checks versus manual property existence checks in JavaScript. Understanding the context and requirements of your code will guide the best choice between these approaches.