Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
InstanceOf vs key in obj vs !== null vs string in key
Go to the benchmark
Embed
Embed Benchmark Result
Run details:
User agent:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36
Browser:
Chrome 133
Operating system:
Mac OS X 10.15.7
Device Platform:
Desktop
Date tested:
one year ago
obj maybe null
182.6M/s
double key
174.7M/s
obj typeof "object"
171.7M/s
key
163.0M/s
instanceof
148.4M/s
View exact numbers
Test name
Executions per second
✓
obj maybe null
182,615,984 Ops/sec
double key
174,676,048 Ops/sec
obj typeof "object"
171,665,968 Ops/sec
key
163,030,768 Ops/sec
instanceof
148,382,544 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;
key
"t" in obj
double key
(obj.t === "other" || obj.t === "mesh")
obj maybe null
obj !== null
obj typeof "object"
typeof obj === "object"