-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
175 lines (156 loc) · 4.3 KB
/
script.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
import "./ai.js";
var rumus = document.getElementById("rumusEl");
var hasil = document.getElementById("hasilEl");
$('#satuEl').on("click", function() {
$('#rumusEl').append("1");
})
$('#duaEl').on("click", function() {
$('#rumusEl').append("2");
})
$('#tigaEl').on("click", function() {
$('#rumusEl').append("3");
})
$('#empatEl').on("click", function() {
$('#rumusEl').append("4");
})
$('#limaEl').on("click", function() {
$('#rumusEl').append("5");
})
$('#enamEl').on("click", function() {
$('#rumusEl').append("6");
})
$('#tujuhEl').on("click", function() {
$('#rumusEl').append("7");
})
$('#delapanEl').on("click", function() {
$('#rumusEl').append("8");
})
$('#sembilanEl').on("click", function() {
$('#rumusEl').append("9");
})
$('#nolEl').on("click", function() {
$('#rumusEl').append("0");
})
$('#titikEl').on("click", function() {
$('#rumusEl').append(".");
})
$('#percentEl').on("click", function() {
$('#rumusEl').append("%");
})
$('#multiEl').on("click", function() {
$('#rumusEl').append("^");
})
$('#piEl').on("click", function() {
$('#rumusEl').append("π");
})
$('#sqrtEl').on("click", function() {
$('#rumusEl').append("√(");
})
$('#bukaEl').on("click", function() {
$('#rumusEl').append("(");
})
$('#tutupEl').on("click", function() {
$('#rumusEl').append(")");
})
$('#sinEl').on("click", function() {
$('#rumusEl').append("sin(");
})
$('#cosEl').on("click", function() {
$('#rumusEl').append("cos(");
})
$('#tanEl').on("click", function() {
$('#rumusEl').append("tan(");
})
$('#tambahEl').on("click", function() {
$('#rumusEl').append("+")
})
$('#kurangEl').on("click", function() {
$('#rumusEl').append("-")
})
$('#kaliEl').on("click", function() {
$('#rumusEl').append("×")
})
$('#bagiEl').on("click", function() {
$('#rumusEl').append("÷")
})
$('#deleteEl').on("click", function() {
var del = document.createTextNode(rumus.textContent.slice(0,-1));
rumus.innerHTML = "";
rumus.appendChild(del);
})
//animasi fade out ketika dihapus AC
$('#clearEl').on("click", function() {
$('#rumusEl').css("opacity","0");
$('#hasilEl').css("opacity","0");
setTimeout( function() {
$('#rumusEl').css("opacity","1");
$('#hasilEl').css("opacity","1");
$('#rumusEl').html("");
$('#hasilEl').html("");
}, 60)
})
//
//hitung rumusnya
function hitungRumus() {
var pi = rumus.textContent.replace(/π/g, "Math.PI");
// Fix perkalian ()
var fixSin = pi.replace(/\)s/g, ")*s");
var fixCos = fixSin.replace(/\)c/g, ")*c");
var fixTan = fixCos.replace(/\)t/g, ")*t");
var fix = fixTan.replace(/\)\(/g, ")*(");
var fix1 = fix.replace(/1\(/g, "1*(");
var fix2 = fix1.replace(/2\(/g, "2*(");
var fix3 = fix2.replace(/3\(/g, "3*(");
var fix4 = fix3.replace(/4\(/g, "4*(");
var fix5 = fix4.replace(/5\(/g, "5*(");
var fix6 = fix5.replace(/6\(/g, "6*(");
var fix7 = fix6.replace(/7\(/g, "7*(");
var fix8 = fix7.replace(/8\(/g, "8*(");
var fix9 = fix8.replace(/9\(/g, "9*(");
var fix0 = fix9.replace(/0\(/g, "0*(");
var fixPi = fix0.replace(/π\(/g, "π*(");
var fix01 = fixPi.replace(/\)1/g, ")*1");
var fix02 = fix01.replace(/\)2/g, ")*2");
var fix03 = fix02.replace(/\)3/g, ")*3");
var fix04 = fix03.replace(/\)4/g, ")*4");
var fix05 = fix04.replace(/\)5/g, ")*5");
var fix06 = fix05.replace(/\)6/g, ")*6");
var fix07 = fix06.replace(/\)7/g, ")*7");
var fix08 = fix07.replace(/\)8/g, ")*8");
var fix09 = fix08.replace(/\)9/g, ")*9");
var fix00 = fix09.replace(/\)0/g, ")*0");
var fix0Pi = fix00.replace(/\)π/g, ")*π");
// console.log(numbers);
var operator = {
'÷' : '/',
'×' : '*',
'^' : '**',
// '√' : 'Math.sqrt',
'sin' : 'Math.sin',
'cos' : 'Math.cos',
'tan' : 'Math.tan'
}
var defineSqrt = fix0Pi.replace(/√/g, "Math.sqrt");
var convertOperator = defineSqrt.replace(/\b(?:÷|×|\^|sin|cos|tan)\b/gi, function(convert){
return operator[convert];
});
// console.log(convertOperator + "=" + eval(convertOperator));
try {
$('#hasilEl').html(eval(convertOperator));
$('#hasilEl').css("color", "black");
} catch (error) {
$('#hasilEl').html("Format Error");
$('#hasilEl').css("color", "red");
}
}
$('.btnNum').on("click", function() {
hitungRumus();
})
$('.btnTop').on("click", function() {
hitungRumus();
})
$('#jumlahEl').on("click", function() {
hitungRumus();
rumus.innerHTML = hasil.textContent;
hasil.innerHTML ="";
})