📦method invocation

calling a method.

JSstatementexpressioninvocation ⟩ 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 property

Last updated