๐ฆ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 property
Last updated
Was this helpful?