Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
Lodash defaultTo vs native nullish operation
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/123.0.0.0 Safari/537.36
Browser:
Chrome 123
Operating system:
Mac OS X 10.15.7
Device Platform:
Desktop
Date tested:
2 years ago
Test name
Executions per second
lodash defaulTo
3313311.8 Ops/sec
native nullish operation
152654064.0 Ops/sec
HTML Preparation code:
<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.5/lodash.min.js'></script>
Tests:
lodash defaulTo
let obj = {a: 'a', b: null}; const result1 = _.defaultTo(obj.a, 'default'); const result2 = _.defaultTo(obj.b, 'default'); const result3 = _.defaultTo(obj.c, 'default');
native nullish operation
let obj = {a: 'a', b: null}; const result1 = obj.a ?? 'default'; const result2 = obj.b ?? 'default'; const result3 = obj.c ?? 'default';