“copia superficial y copia profunda en JavaScript” Código de respuesta

Copiar objeto JavaScript

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

copia superficial y copia profunda en 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

Respuestas similares a “copia superficial y copia profunda en JavaScript”

Preguntas similares a “copia superficial y copia profunda en JavaScript”

Más respuestas relacionadas con “copia superficial y copia profunda en JavaScript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código