📦property access expression
use . / [] / ?. / ?.[] to evaluate object property / array element.
JS ⟩ statement ⟩ expression ⟩ operator ⟩ left-hand side ⟩ property access ⟩ expression
the [expr]
part of bracket notation []:
is evaluated and converted to a string❗
property access and invocation expressions have higher precedence than any of the operators.
Last updated