📦method invocation
calling a method.
JS ⟩ statement ⟩ expression ⟩ invocation ⟩ method invocation
an invocation expression:f() where the funcExpr part is a property access expression.
propertyAccessExpr ( argumentList ) // syntax
Math.max(x, y, z) // method invocation
// ╰──⭐️──╯ <------- accessing a propertyLast updated
Was this helpful?