I have 6 input fields: A, B, C, D, E, F, and I have 3 output fields: outA, outB, outC
I need to have outA display the result of the following formula: 365 * 24 * A * B * C * D * 40% * 85%
outB display: (E + F) / outA * 12
And outC display: ((12 * 5)) - outB) / outB
Is Javascript the best way to do this? Are there any online resources that would make this easier? I started using jscalc.io but it doesn't let me access the source code in order to embed it on my site. Is this a high difficulty project? (I'm not great with Javascript, and worse with numbers)