BitClout, le réseau social crypto qui vous donne accès à un wallet. Découvrez mon profil 👉 https://bitclout.com/u/abdounasser202
Discover the queen of code: https://youtu.be/5sNuPYJpSCI
BitClout is a social media based on blockchain https://bitclout.com/u/abdounasser202
I usually use :
JSON.parse(JSON.stringify(objectToClone))
But it doesn't work well when your object have cyclical references. And the good news is that it doesn't always depend of you.
In the last issue I had, one of my object had a member called 'idSetInterval'. Its value was the value returned by the setInterval() function (the function used to trigger another function call every x milliseconds). This setInterval() function is supposed to return an integer, but in nodejs it returns an object that is part of a doubly linked structure (my code was working pretty well in the browser but not in the backend):
Example of value returned by setInterval() in NodeJS: Timeout { _idleTimeout: 100, _idlePrev: [Timeout], _idleNext: [Timeout], _idleStart: 1742197, _onTimeout: [Function], _timerArgs: undefined, _repeat: 100, _destroyed: false, [Symbol(refed)]: true, [Symbol(kHasPrimitive)]: false, [Symbol(asyncId)]: 338, [Symbol(triggerId)]: 5 }
So JSON.stringify doesn't know how to manage cyclical references. I managed this with some hacks, but with doubly cyclical references it is harder.
Do you have a better or simpler method to clone objects in javascript ?