Toggle navigation
MeasureThat.net
Create a benchmark
Tools
Feedback
FAQ
Register
Log In
Run results for:
Lodash cloneDeep vs JSON Clone
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/137.0.0.0 Safari/537.36
Browser:
Chrome 137
Operating system:
Mac OS X 10.15.7
Device Platform:
Desktop
Date tested:
10 months ago
Test name
Executions per second
Lodash cloneDeep
248367.8 Ops/sec
Json clone
437831.8 Ops/sec
HTML Preparation code:
<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.10/lodash.min.js'></script>
Script Preparation code:
var MyObject = { "_id": "5af7e5f9c3a3aa2c8495305e", "index": 0, "guid": "f4a86db0-f457-400e-9280-e4e84a97191c", "isActive": true, "balance": "$1,546.38", "picture": "http://placehold.it/32x32", "age": 35, "eyeColor": "blue", "name": { "first": "Trina", "last": "Bonner" }, "company": "PHOTOBIN", "email": "trina.bonner@photobin.co.uk", "phone": "+1 (907) 417-3108", "address": "132 Rutherford Place, Munjor, Iowa, 9843", "about": "Sit consectetur dolor nostrud dolore culpa cupidatat. Commodo minim qui sint est est excepteur est id commodo est ut sunt qui amet. Aute veniam tempor sunt irure nulla.", "registered": "Tuesday, February 16, 2016 4:23 PM", "latitude": "-21.702025", "longitude": "-41.621726", "tags": [ "consequat", "nulla", "aute", "aute", "aliqua" ], "range": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ], "friends": [ { "id": 0, "name": "Tommie Noble" }, { "id": 1, "name": "Edna French" }, { "id": 2, "name": "Durham Faulkner" } ], "greeting": "Hello, Trina! You have 8 unread messages.", "favoriteFruit": "strawberry" }; var myCopy = null;
Tests:
Lodash cloneDeep
myCopy = _.cloneDeep(MyObject);
Json clone
myCopy = JSON.parse(JSON.stringify(MyObject));