dimw / dab-ws19-webdev1-calc

MIT License
0 stars 10 forks source link

Calculator not working #2

Open drinking-code opened 4 years ago

drinking-code commented 4 years ago

Calculator not putting out correct result, despite valid input e.g. input: 3 5 + output: 35

RittnerE commented 4 years ago

outstanding idea

drinking-code commented 4 years ago

operants must be converted to numbers before calculating.

drinking-code commented 4 years ago

operants must be converted to numbers before calculating.

const operand1 = Number(arguments[0]);
const operand2 = Number(arguments[1]);