-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
225 lines (189 loc) · 4.03 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
// const heading = document.querySelector('h1');
// heading.textContent = 'Hello World!';
// console.log(heading);
/**
* 1. Variabel => tempat untuk menyimpan data
*/
// var
// const
// let
// var => bisa diubah ubah
// var nama = 'Hendra';
// nama = 'Agil';
// console.log(nama);
// const => tidak bisa diubah ubah
// const umur = 18;
// umur = 17;
// console.log(umur);
// let => bisa diubah ubah (mirip dengan var)
// let sekolah = 'SMKN 2 Karanganyar';
// sekolah = 'SMKN 1 Karanganyar';
// console.log(sekolah);
/**
* 2. Tipe data
*/
// Case style: https://betterprogramming.pub/string-case-styles-camel-pascal-snake-and-kebab-case-981407998841
// String
// const nama = "Hendra";
// const nama = 'Agil';
// Number -> adalah angka
// const umur = 18;
// Boolean -> true atau false
// const sudahLulus = true;
// Array
/**
* Index array mulai dari 0
*/
// const bahasa = ['HTML', 'CSS', true, 18, 'JS'];
// console.log(bahasa);
// console.log(bahasa[4]);
// Object
// const identitas = {
// nama: 'Hendra',
// umur: 18,
// sudah_lulus: true,
// };
// console.log(identitas);
// for (const property in identitas) {
// const value = identitas[property];
// console.log(`${property}: ${value}`);
// }
// console.log(identitas.sudah_lulus);
// console.log(identitas.nama);
// identitas.sekolah = 'SMKN 2 Karanganyar';
// console.log(identitas);
// Ini komentar
/**
* Ini komentar
* Fungsi komentar:
* 1. Memberi keterangan
* 2. Menonaktifkan kode
*/
/**
* 3. Operator
*/
/**
* Operator Aritmatika
*/
// +
// const nomorA = 10;
// const nomorB = 20;
// const hasil = nomorA + nomorB;
// console.log(hasil);
// -
// const nomorA = 10;
// const nomorB = 20;
// const hasil = nomorA - nomorB;
// console.log(hasil);
// *
// const nomorA = 10;
// const nomorB = 20;
// const hasil = nomorA * nomorB;
// console.log(hasil);
// /
// const nomorA = 10;
// const nomorB = 20;
// const hasil = nomorA / nomorB;
// console.log(hasil);
/**
* Operator perbandingan
*/
// ===
// const nomorA = 10;
// const nomorB = 10;
// console.log(nomorA === nomorB);
// !==
// const nomorA = 10;
// const nomorB = 10;
// console.log(nomorA !== nomorB);
// !
// const sudahLulus = true;
// console.log(!sudahLulus);
// && -> dan (AND)
// const a = 3;
// const b = 5;
// const c = 6;
// true = 1
// false = 0
// console.log(a < b);
// const isOk = a < b && b > c;
// console.log(isOk);
// console.log(Math);
// || -> atau (OR)
// const a = 3;
// const b = -2;
// console.log(a > 0 || b > 0);
/**
* 4. Kondisi
*/
// const sudahLulus = true;
// const nomorA = 1;
// const nomorB = 11;
// if else
// if (nomorA === nomorB) {
// console.log('Nomor A sama dengan Nomor B');
// } else {
// console.log('Nomor A tidak sama dengan Nomor B');
// }
// switch case
// switch (nomorA) {
// case 10:
// console.log('Sepuluh');
// break;
// case 11:
// console.log('Sebelas');
// break;
// default:
// console.log('Nomor A itu bukan angka');
// break;
// }
/**
* 5. Looping / perulangan
*/
const bahasa = ['HTML', 'CSS', 'JavaScript'];
// console.log(bahasa.length);
// for (let i = 0; i < bahasa.length; i++) {
// console.log(bahasa[i]);
// }
// let i = 0;
// do {
// console.log('DO WHILE >>', i);
// i++;
// } while (i < 0);
// let j = 0;
// while (j < 0) {
// console.log('WHILE DO >>', j);
// j++;
// }
// bahasa.forEach((item) => {
// console.log(item);
// });
// bahasa.map((item) => {
// console.log(item);
// });
/**
* 6. Function / fungsi
*/
// Regular function
// function pengurangan(angka1, angka2) {
// return angka1 - angka2;
// }
// Arrow function
// const pengurangan = (angka1, angka2) => {
// return angka1 - angka2;
// };
// Anonymous function
// const operator = {
// pengurangan: function(angka1, angka2) {
// return angka1 - angka2;
// },
// perkalian: (angka1, angka2) => {
// return angka1 * angka2;
// }
// }
// const nomorA = 20000;
// const nomorB = 10000;
// console.log(operator.pengurangan(nomorA, nomorB));
// const nomorC = 30;
// const nomorD = 50;
// console.log(operator.perkalian(nomorC, nomorD));