-
Notifications
You must be signed in to change notification settings - Fork 0
/
excercise4.js
47 lines (45 loc) · 961 Bytes
/
excercise4.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
var hari = 2;
var bulan = 13;
var tahun = 1990;
var format
switch (bulan){
case 1:
console.log(hari + " Januari " + tahun);
break;
case 2:
console.log(hari + " Febuari " + tahun);
break;
case 3:
console.log(hari + " Maret " + tahun);
break;
case 4:
console.log(hari + " April " + tahun);
break;
case 5:
console.log(hari + " Mei " + tahun);
break;
case 6:
console.log(hari + " Juni " + tahun);
break;
case 7:
console.log(hari + " July " + tahun);
break;
case 8:
console.log(hari + " Agustus " + tahun);
break;
case 9:
console.log(hari + " September " + tahun);
break;
case 10:
console.log(hari + " Oktober " + tahun);
break;
case 11:
console.log(hari + " November " + tahun);
break;
case 12:
console.log(hari + " Desember " + tahun);
break;
default:
console.log("Masukan kembali");
break
}