-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassignment-23.html
51 lines (43 loc) · 892 Bytes
/
assignment-23.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
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<title>Switch Case</title>
</head>
<body>
<script>
const number = prompt('Enter Number: ');
switch(number)
{
case '1':
document.write('One')
break;
case '2':
document.write('Two')
break;
case '3':
document.write('Three')
break;
case '4':
document.write('Four')
break;
case '5':
document.write('Five')
break;
case '6':
document.write('Six')
break;
case '7':
document.write('Seven')
break;
case '8':
document.write('Eight')
break;
case '9':
document.write('Nine')
break;
default:
document.write('Invalid Number')
}
</script>
</body>
</html>