What is the result of the following expression: 5 + 3 * 2 - 6 / 3?
6
9
10
14
Correct: B
In JavaScript, multiplication and division have higher precedence than addition and subtraction. So, the expression is evaluated as follows: 5 + (3 * 2) - (6 / 3) = 5 + 6 - 2 = 9.