📦invocation expression:f()

`f(args)` syntax.

JSstatementexpression ⟩ invocation

(expression) use f(args) syntax to call a function/method.

f ( args )    // f: expression, args: argument list

f(0)                         // calls a function
Math.max(x, y, z)            // calls a method

Last updated