How are the rules in the precedence section applied to
(3 >= 3 && !(true || true)) ?
They say the order is: ! then && then ||
However this order doesn’t make sense because (true || true) must be evaluated first because they are in brackets.
I get that the answer is false and it makes sense if the brackets are evaluated first but do the brackets always override the precedence order ! then && then || ?