“flache Kopie und tiefe Kopie in JavaScript” Code-Antworten

Objekt JavaScript kopieren

var x = {key: 'value'}
var y = JSON.parse(JSON.stringify(x))

//this method actually creates a reference-free version of the object, unlike the other methods
//If you do not use Dates, functions, undefined, regExp or Infinity within your object
slgotting

flache Kopie und tiefe Kopie in JavaScript

// shallow copy :: modification in original array
 var newEmployee = employee;

// Deep copy :: no modification in orifinal array
 var newEmployee = JSON.parse(JSON.stringify(employee));
Abhishek

Ähnliche Antworten wie “flache Kopie und tiefe Kopie in JavaScript”

Fragen ähnlich wie “flache Kopie und tiefe Kopie in JavaScript”

Weitere verwandte Antworten zu “flache Kopie und tiefe Kopie in JavaScript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen