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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15
Browser:
Safari 17
Operating system:
Mac OS X 10.15.7
Device Platform:
Desktop
Date tested:
2 years ago
string type
40.5M/s
constructor comparison
17.3M/s
instanceof
17.2M/s
string type + undefined
14.5M/s
property
14.3M/s
View exact numbers
Test name
Executions per second
✓
string type
40,547,272 Ops/sec
constructor comparison
17,310,200 Ops/sec
instanceof
17,169,084 Ops/sec
string type + undefined
14,466,069 Ops/sec
property
14,329,931 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