Hello!
If I have a calculator, for example:
Two fields where the user (of the app) will input two numbers. When they click "Calculate" you get this: number1 / number2 = answer.
But if they for example write in "4 / 3", you will get: 1,333333333333333333-
My question is: How can I make the answer to: 1,334?
The javascript is in the Calculate-button:
var one, two
one = parseFloat(Appery("nu1").val());
two = parseFloat(Appery("nu2").val());
Appery("answe").val(one/two);