-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path51-Destructuring_Array.html
More file actions
53 lines (47 loc) · 1.25 KB
/
51-Destructuring_Array.html
File metadata and controls
53 lines (47 loc) · 1.25 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Destructuring Array</title>
</head>
<body>
<script>
// pemecah data dalam array
const names = ['Eko', 'Kurniawan', 'Khanedy', 'Joko', 'Anwar'];
const [satu, dua, tiga, ...lainnya] = names;
console.log(satu);
console.log(dua);
console.log(tiga);
console.log(lainnya);
// mengambil data dalam object
const person = {
firstName: 'Eko',
middleName: 'Kurniawam',
lastName: 'Khanedy',
address: {
street: 'Jalan Belum Ada',
city: 'Jakarta',
country: 'Indonesia'
},
skill: {
bahasa: 'English',
coding: 'JavaScript',
musik: 'guitar'
},
hobby: "Games",
channel: "Programer Zaman Now"
}
const { firstName, lastName, middleName, skill: { bahasa, coding, musik }, address, ...others } = person;
console.log(firstName);
console.log(middleName);
console.log(lastName);
console.log(address);
console.log(bahasa);
console.log(coding);
console.log(musik);
console.log(others);
</script>
</body>
</html>