Toggle navigation
MeasureThat
.net
Create a benchmark
Tools
Feedback
Feature Requests
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/134.0.0.0 Safari/537.36
Browser:
Chrome 134
Operating system:
Mac OS X 10.15.7
Device Platform:
Desktop
Date tested:
one year ago
Benchmark engine:
Benchmark.js
native nullish operation
169.5M/s
lodash defaulTo
159.3M/s
View exact numbers
Test name
Executions per second
✓
native nullish operation
169,453,296 Ops/sec
lodash defaulTo
159,260,784 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';