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
Modulo should have the same precedence as division, multiplication, and exponents. See here