calling a method.
Last updated 2 years ago
Was this helpful?
⟩ ⟩ ⟩ ⟩ method invocation
an invocation expression:f() where the funcExpr part is a property access expression.
funcExpr
propertyAccessExpr ( argumentList ) // syntax Math.max(x, y, z) // method invocation // ╰──⭐️──╯ <------- accessing a property
JavaScript: The Definitive Guide ⟩
4.5 Invocation Expressions
Ch. 9
⟩