-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscript.js
82 lines (63 loc) · 2.37 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// const animals = ["dogs", "cats"];
// const otherAnimals = animals;
// animals.push("pig");
// console.log(animals); // [ 'dogs', 'cats', 'pig' ]
// We get the same output for otherAnimals too,
// because the otherAnimals is also referencing the same memory
// as the animals.
// console.log(otherAnimals); // [ 'dogs', 'cats', 'pig' ]
// Cloning Arrays
// 1st way : Spread Operator
// const numbers = [1, 2, 3, 4];
// const copiedNumbers = numbers;
// Using spread Opeator,
// Also known as Shallow Cloning
// const newNumbers = [...numbers];
// numbers.push(5);
// console.log(numbers); // [ 1, 2, 3, 4, 5 ]
// console.log(copiedNumbers); // [ 1, 2, 3, 4, 5 ]
// console.log(newNumbers); // [ 1, 2, 3, 4 ]
// 2nd way : Array.slice()
// const numbers = [1, 2, 3, 4];
// const copiedNumbers = numbers;
// Using spread Opeator,
// Also known as Shallow Cloning
// const newNumbers = numbers.slice();
// numbers.push(5);
// console.log(numbers); // [ 1, 2, 3, 4, 5 ]
// console.log(copiedNumbers); // [ 1, 2, 3, 4, 5 ]
// console.log(newNumbers); // [ 1, 2, 3, 4 ]
// Cloning Objects
// 1st way : Spread Operator
// const person = { name: "John", age: 22 };
// const newPerson = { ...person };
// person.age = 23;
// console.log(person); // { name: 'John', age: 23 }
// console.log(newPerson); // { name: 'John', age: 22 }
// 2nd way : Object.assign()
// const person = { name: "John", age: 22 };
// const newPerson = Object.assign({},person);
// person.age = 23;
// console.log(person); // { name: 'John', age: 23 }
// console.log(newPerson); // { name: 'John', age: 22 }
// Deep Cloning
// We can create a shallow copy of person object
// but we have to do it for all the inner objects as well.
// To solve this we can do a deep cloning where we make
// use of JSON.stringify() method
const person = {
name: "Shubham",
car: {
brand: "BMW",
color: "blue",
wheels: 4,
},
};
const newPerson = JSON.stringify(person);
// newPerson will be in the form of string,
// to convert it back to an object,
// we use JSON.parse();
const updatedPerson = JSON.parse(newPerson);
updatedPerson.car.color = "red";
console.log(person); // { name: 'Shubham', car: { brand: 'BMW', color: 'blue', wheels: 4 } }
console.log(updatedPerson); // { name: 'Shubham', car: { brand: 'BMW', color: 'red', wheels: 4 } }