-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjs10.html
More file actions
41 lines (38 loc) · 1.04 KB
/
js10.html
File metadata and controls
41 lines (38 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JS'ye Giriş 10</title>
</head>
<body>
<script type="text/javascript">
var gun = prompt("Gün", "Lütfen 1-7 Arasında Bir Sayı Giriniz.");
switch (gun) {
case "1":
document.write("Pazartesi");
break;
case "2":
document.write("Salı");
break;
case "3":
document.write("Çarşamba");
break;
case "4":
document.write("Perşembe");
break;
case "5":
document.write("Cuma");
break;
case "6":
document.write("Cumartesi");
break;
case "7":
document.write("Pazar");
break;
default:
document.write("Böyle Bir Gün Yok.")
}
</script>
</body>
</html>