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