Immediate function return: return-statement
The return-statement causes a function to return immediately, i.e., any code after the return-statement is not executed. The return-statement starts with the return
keyword and is followed by an optional expression that should be the return value of the function call.
Last updated