Image communauté
🗓 Créé le 15/11/2021

Description

🌐 Suivez l'évolution de Peef et donnez vos feedbacks.

Laisser un feedback

Peef Community

6 membres - Voir toutes les communautés
nuggets 17/03/2021 (18:52) GMT

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 ?