Operator precedence groups terms in expressions. This affects how the math problem is evaluated. Some operators take higher precedence. Example: Multiplication operator has higher precedence over the addition operator.
The above code will output 10
The Multiplication is the higher precedence 3*2 = 6
Then the Addition 4+6
Equals 10
Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.