Calc
ecma/function/calc/code/calc.mjs
:
/**
* operator: '+', '-', '*', '/'
*/
function calc(operand1, operand2, operator) {
// TODO
}
export { calc };
ecma/function/calc/code/calc.print.mjs
:
import { calc } from './calc.mjs';
// Calculator
// adding 1 + 1
console.log(calc(1, 1, '+'));
console.log(2);
// subtracting 1 - 1
console.log(calc(1, 1, '-'));
console.log(0);
// multiplying 1 * 1
console.log(calc(1, 1, '*'));
console.log(1);
// dividing 1 / 1
console.log(calc(1, 1, '/'));
console.log(1);