Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
Instanceof vs string comparison vs property checking vs constructor comparison
Measure the performance of instanceOf operator vs comparing a basic string type.
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 YaBrowser/24.7.0.0 Safari/537.36
Browser:
Yandex Browser 24
Operating system:
Linux
Device Platform:
Desktop
Date tested:
one year ago
string type
38.8M/s
constructor comparison
16.2M/s
instanceof
15.7M/s
string type + undefined
14.1M/s
property
14.1M/s
View exact numbers
Test name
Executions per second
✓
string type
38,837,356 Ops/sec
constructor comparison
16,244,255 Ops/sec
instanceof
15,715,419 Ops/sec
string type + undefined
14,114,843 Ops/sec
property
14,071,548 Ops/sec
HTML Preparation code:
<script> class TestClass { constructor() { this.a = 2; this.t = 'mesh'; } } </script>
Script Preparation code:
var obj = new TestClass();
Tests:
instanceof
obj instanceof TestClass;
string type
obj.t === 'mesh'
string type + undefined
obj.t !== undefined
property
obj.a !== undefined
constructor comparison
obj.constructor === TestClass