Utilizor
Contact Us

Return Values

Returning data from functions.

Return Values

When JavaScript reaches a return statement, the function will stop executing.

If the function was invoked from a statement, JavaScript will "return" to execute the code after the invoking statement.

Functions often compute a return value. The return value is "returned" back to the "caller".

Example

function myFunction(a, b) {
  return a * b;
}