Concept Flow - Explicit return statement
Start function
Execute code lines
Encounter return statement?
No→Continue executing
Yes
Return value immediately
Exit function
The function starts and runs code until it finds a return statement, then it immediately sends back the value and stops running.