-
Notifications
You must be signed in to change notification settings - Fork 0
/
Getter&Setter.html
46 lines (35 loc) · 1.17 KB
/
Getter&Setter.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
<!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>Getter dan Setter</title>
</head>
<body>
<script>
/* > adalah kemampuan membaut function yang berbeda untuk mengambil data(getter) dan mengubah data(setter) pada sebuah property di object
> dengan menggunakan getter dan setter, ktia bisa melakukan hal apapun dalam function sebelum sebuah property di akses atau diubah, misal menambah validasi dan lain-lain
*/
//GETTER
const person = {
firstName: "shibgha",
lastName: "Arifqi",
get fullName(){
return `${this.firstName} ${this.lastName}`;
}, //SETTER
set fullName(value){
const array = value.split(" ");
this.firstName = array[0];
this.lastName = array[1];
}
};
person.firstName = "Budi Kuncoro";
console.table(person);
person.firstName = "Paraklet";
console.table(person);
person.firstName = "No Body Care";
console.table(person.fullName);
</script>
</body>
</html>