Test name | Executions per second |
---|---|
JSON | 408.6 Ops/sec |
structuredClone | 454.1 Ops/sec |
function createBigObject(depth) {
const obj = {};
for (let i = 0; i < 5000; i++) {
obj[i + Math.floor(Math.random() * 10000)] = {
[Math.random() * 10000]: Math.random() * 10000,
};
}
return obj;
}
var bigObj = createBigObject()
var clone;
clone = JSON.parse(JSON.stringify(bigObj))
clone = structuredClone(bigObj)