If I have the following code
var num = 15 % 2 + 6 * 4;
for example... I\'d like to know what the output will be, specifically I would like to
Basically you going left to right but you're doing plus first, then multiply, then divide, and the remainder stuff is divide. So
is basically 15 % 2 = 1