๐ฐassociativity
๐ง under construction
JS โฉ statement โฉ expression โฉ operator โฉ term โฉ 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
JavaScript: The Definitive Guide โฉ 4.7.5 Operator Associativity
Last updated
Was this helpful?