This page is Ready to Use

Notice: The WebPlatform project, supported by various stewards between 2012 and 2015, has been discontinued. This site is now available on github.

return

Summary

Exits from the current function and returns a value from that function.

Syntax

return [ ( ][ expression ][ ) ];

Examples

The following example illustrates the use of the return statement.

function myfunction(arg1, arg2){
    var r;
    r = arg1 * arg2;
    return(r);
 }

The following example illustrates the use of the return statement to return a function.

function doWork() {
     return function calculate(y) { return y + 1; };
 }

 var func = doWork();
 var x = func(5);
 document.write(x);

 // Output: 6

Remarks

The optional expression argument is the value to be returned from the function. If omitted, the function does not return a value.

You use the return statement to stop execution of a function and return the value of expression. If expression is omitted, or no return statement is executed from within the function, the expression that called the current function is assigned the value undefined.

See also

Other articles

Attributions

  • Microsoft Developer Network: Article