Function implementation – return statement
nSyntax: return expression;
nPurpose: Exit a function returning the value of the expression as the function result.
n
nWhen the return statement is processed, the function exists immediately.
n