📦invocation expression:f()
`f(args)` syntax.
JS ⟩ statement ⟩ expression ⟩ 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
Was this helpful?