Answers for "json object duplicate to modify without affecting original javascript"

3

javascript copy an object without reference

var obj = {a: 25, b: 50, c: 75};
var A = Object.create(obj);
var B = Object.create(obj);

A.a = 30;
B.a = 40;

alert(obj.a + " " + A.a + " " + B.a); // 25 30 40
Posted by: Guest on July-27-2020
0

javascript clone object

let clone = Object.create(Object.getPrototypeOf(obj), Object.getOwnPropertyDescriptors(obj));
Posted by: Guest on December-24-2020

Code answers related to "json object duplicate to modify without affecting original javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language