Function call
A function call is the action of triggering the execution of a function in a program. A function is a block of reusable code that performs a specific task (e.g. calculating a total, formatting a date, checking a password). When a function is called, parameters (input values) can be passed, and the function may return a result. Function calls help to structure the code, avoid repetition and facilitate maintenance by isolating business behaviours.