Liliana797979

calculator - fundamentals

May 28th, 2021
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function calculator(num1, operator, num2) {
  2.     console.log(eval(num1 + operator + num2).toFixed(2));
  3. }
Advertisement
Add Comment
Please, Sign In to add comment