-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathp28.html
More file actions
52 lines (43 loc) · 1.15 KB
/
p28.html
File metadata and controls
52 lines (43 loc) · 1.15 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
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>This is JS programming</title>
<script type="text/javascript">
function CalculateDay() {
day = document.getElementById("txtMarks").value;
day = parseInt(day)
switch (day) {
case 1:
x = 'Saturday';
break;
case 2:
x = 'Sunday';
break;
case 3:
x = 'Monday';
break;
case 4:
x = 'Tuesday';
break;
case 5:
x = 'Wednesday';
break;
case 6:
x = 'Thirsday';
break;
case 7:
x = 'Friday';
break;
default:
x = "Input number 1-7";
}
alert(x);
}
</script>
</head>
<body>
Input Day Number: <input type="text" id="txtMarks"> <br>
<button onclick="CalculateDay();">OK</button>
</body>
</html>