-
Notifications
You must be signed in to change notification settings - Fork 0
/
data-type-object.html
54 lines (41 loc) · 1.34 KB
/
data-type-object.html
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
<!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>Data Type : Object</title>
</head>
<body>
<script>
/*
## Tipe Data Array
● Tipe data object adalah tipe data yang mirip dengan tipe data Array
● Yang membedakan adalah index pada tipe data object bisa menggunakan string
● Index di object biasanya disebut attributes atau properties, bukan index
## Operasi di Array
*/
let objectKosong = {};
// Mengubah Property di Object
const mahasiswa = {};
// Menambah atau mengubah
mahasiswa["nama"] = "Fauzan Ahmad";
mahasiswa["alamat"] = "Indonesia";
mahasiswa["umur"] = "30";
// Menghapus
delete mahasiswa["umur"];
console.table(mahasiswa);
// Membuat object dengan properties
let orang = {
"nama kamu": "Fauzan Ahmad",
alamat: "Indonesia",
umur: 30,
};
console.table(orang);
// Mengakses Property Object
console.info(`Nama : ${orang["nama kamu"]}`);
console.info(`Alamat : ${orang.alamat}`);
console.info(`Umur : ${orang.umur}`);
</script>
</body>
</html>