gZanyLvl 2
- Edited
- Windows
A calculator that calculates math equations. This calculator also follows order of operations unlike other ones and you can use parentheses inside of the function. Can be used on any platform (not just cdo) that can use modern html. Just add a <script> tag then put the code below inside it.
function Solve(problem) {var Equation = problem;console.log("Answer: "+Math.abs(Equation));}