3.4.8 – Precedence
Operator precedence in Lua follows the table below, from lower to higher priority:
1 2 3 4 5 6 7 8 9 10 11 12 | or and < > <= >= ~= == | ~ & << >> .. + - * / // % unary operators (not # - ~) ^ |
As usual, you can use parentheses to change the precedences of an expression. The concatenation ('..
') and exponentiation ('^
') operators are right associative. All other binary operators are left associative.
Please login to continue.