|
FunctionIn computer programming, a function is a piece of code that performs some action and can be "called" from other locations in a program. For example, the function "min" can be used in PHP to find the smallest of 2 numbers. The two numbers are "passed" to min, which "returns" the smallest. |
