I was taught left to right, and in the case of A ^ B ^ C, it's the same thing as A ^ ( B * C).
2 ^ 3 ^ 4
8 ^ 4
4096
The same as:
2 ^ (3 * 4)
2 ^ 12
4096
Power Raised to a Power
According to this law, if ‘a’ is the base, then the power raised to the power of base ‘a’ gives the product of the powers raised to the base ‘a’, such as;
(a^m)^n = a^(m*n)
where a is a non-zero term and m and n are integers.