“Obiekt Ajavascript Clone” Kod odpowiedzi

obiekt klonowy w JS

var student = {name: "Rahul", age: "16", hobby: "football"};

//using ES6
var studentCopy1 = Object.assign({}, student);
//using spread syntax
var studentCopy2 = {...student}; 
//Fast cloning with data loss
var studentCopy3 = JSON.parse(JSON.stringify(student));
JavascriptNinja

Obiekt Ajavascript Clone

var sheep={"height":20,"name":"Melvin"};
var clonedSheep=JSON.parse(JSON.stringify(sheep));

//note: cloning like this will not work with some complex objects such as:  Date(), undefined, Infinity
// For complex objects try: lodash's cloneDeep() method or angularJS angular.copy() method
Grepper

Odpowiedzi podobne do “Obiekt Ajavascript Clone”

Pytania podobne do “Obiekt Ajavascript Clone”

Więcej pokrewnych odpowiedzi na “Obiekt Ajavascript Clone” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu