+ 1
How would i write this into a JS problem using order of operations.
1. Add 10 and 22 | 2. Subtract 4 from 31 | 3. Multiply the results of the two previous operations | 4. Divide that number by 2
3 RĂ©ponses
+ 7
Do you mean
(10+22)*(31-4)/2
??
But how is it related to JS ??
May be:
var a = 10+22;
var b = 31-4;
var c = a*b;
var result = c/2;
+ 2
Hint: ((10+22)*(31-4))/2
+ 2
no just a simple print function using console.log and order of operations