๐ง under construction
Last updated 2 years ago
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