-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
128 lines (122 loc) · 2.56 KB
/
app.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
// First OPTION:
var asci = {
1: "A",
2: "B",
3: "C",
4: "D",
5: "E",
6: "F",
7: "G",
8: "H",
9: "I",
10: "J",
11: "K",
12: "L",
13: "M",
14: "N",
15: "O",
16: "P",
17: "Q",
18: "R",
19: "S",
20: "T",
21: "U",
22: "V",
23: "W",
24: "X",
25: "Y",
26: "Z",
}
function chr(input){
if(input in asci){
// alert(asci[input]);
document.getElementById("value").innerText = asci[input];
document.getElementById("value").style.backgroundColor = "black";
}
}
// Second OPTION:
// var asci = {
// chr: function chr(input){
// if(input == 1){
// alert("A")
// }
// else if(input == 2){
// alert("B")
// }
// else if(input == 3){
// alert("C")
// }
// else if(input == 4){
// alert("D")
// }
// else if(input == 5){
// alert("E")
// }
// else if(input == 6){
// alert("F")
// }
// else if(input == 7){
// alert("G")
// }
// else if(input == 8){
// alert("H")
// }
// else if(input == 9){
// alert("I")
// }
// else if(input == 10){
// alert("J")
// }
// else if(input == 11){
// alert("K")
// }
// else if(input == 12){
// alert("L")
// }
// else if(input == 13){
// alert("M")
// }
// else if(input == 14){
// alert("N")
// }
// else if(input == 15){
// alert("O")
// }
// else if(input == 16){
// alert("P")
// }
// else if(input == 17){
// alert("Q")
// }
// else if(input == 18){
// alert("R")
// }
// else if(input == 19){
// alert("S")
// }
// else if(input == 20){
// alert("T")
// }
// else if(input == 21){
// alert("U")
// }
// else if(input == 22){
// alert("V")
// }
// else if(input == 23){
// alert("W")
// }
// else if(input == 24){
// alert("X")
// }
// else if(input == 25){
// alert("Y")
// }
// else if(input == 26){
// alert("Z")
// }
// else{
// alert("Please Type Any Number Then See Result!")
// }
// }
// }