🔰associativity

🚧 under construction

JSstatementexpressionoperatorterm ⟩ associativity

specifies the order in which operations of the same precedence are performed.

x * y * z === ((x * y) * z)    // L: left-to-right 
x = y = z === (x = (y = z))    // R: right-to-left 

👉 table of operators

Last updated