There was an error while loading. Please reload this page.
1 parent dd7bee2 commit 4cda385Copy full SHA for 4cda385
index.html
@@ -12,16 +12,17 @@
12
function _ab(val)
13
{
14
var obj = new BigEval();
15
-return obj.exec(val)
16
- console.log(val)
+result=obj.exec(val)
+ return result;
17
+ console.log(val,result)
18
19
}
20
21
function auto_update()
22
23
var numString = document.getElementById('_word').value;
24
n=_ab(numString)
- document.getElementById('container').innerHTML = `total value of ${n[0]} after gst would be ${n[1]}`;
25
+ document.getElementById('container').innerHTML = `total value of ${n[0]} after gst would be ${n[1]}`;
26
// console.log(numString);
27
28
0 commit comments